Skip to content

Commit bc7105d

Browse files
committed
Bump the version: 1.11.0 -> 1.12.0
1 parent 4fde90c commit bc7105d

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "voca_rs"
3-
version = "1.11.0"
3+
version = "1.12.0"
44
authors = ["Anatol Merezhanyi <a.merezhanyi@gmail.com>"]
55
license = "MIT"
66
description = "Voca_rs is a Rust library for manipulating strings. Inspired by Voca.js and string.py"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# voca_rs [![Build Status](https://travis-ci.org/e1r0nd/voca_rs.svg?branch=master)](https://travis-ci.org/e1r0nd/voca_rs) [![Crates version](http://meritbadge.herokuapp.com/voca_rs)](https://crates.io/crates/voca_rs) [![dependency status](https://deps.rs/crate/voca_rs/1.11.0/status.svg)](https://deps.rs/crate/voca_rs/1.11.0) [![codecov](https://codecov.io/gh/e1r0nd/voca_rs/branch/master/graph/badge.svg)](https://codecov.io/gh/e1r0nd/voca_rs) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/bd9aee15841a470da1408b83d05e09f7)](https://app.codacy.com/app/e1r0nd-crg/voca_rs?utm_source=github.com&utm_medium=referral&utm_content=e1r0nd/voca_rs&utm_campaign=Badge_Grade_Dashboard) [![license](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
1+
# voca_rs [![Build Status](https://travis-ci.org/e1r0nd/voca_rs.svg?branch=master)](https://travis-ci.org/e1r0nd/voca_rs) [![Crates version](http://meritbadge.herokuapp.com/voca_rs)](https://crates.io/crates/voca_rs) [![dependency status](https://deps.rs/crate/voca_rs/1.12.0/status.svg)](https://deps.rs/crate/voca_rs/1.12.0) [![codecov](https://codecov.io/gh/e1r0nd/voca_rs/branch/master/graph/badge.svg)](https://codecov.io/gh/e1r0nd/voca_rs) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/bd9aee15841a470da1408b83d05e09f7)](https://app.codacy.com/app/e1r0nd-crg/voca_rs?utm_source=github.com&utm_medium=referral&utm_content=e1r0nd/voca_rs&utm_campaign=Badge_Grade_Dashboard) [![license](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
22

33
**Voca_rs is a Rust library for manipulating [unicode] strings.**
44

src/utils.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
/// ```
88
/// use voca_rs::*;
99
/// utils::VERSION;
10-
/// // => "1.11.0"
10+
/// // => "1.12.0"
1111
/// ```
12-
pub const VERSION: &str = "1.11.0";
12+
pub const VERSION: &str = "1.12.0";
1313

1414
/// The concatenation of the `ascii_lowercase` and `ascii_uppercase` constants described below. This value is not locale-dependent.
1515
///

tests/unit/utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
#[test]
44
fn version() {
5-
assert_eq!(voca_rs::utils::VERSION, "1.11.0");
5+
assert_eq!(voca_rs::utils::VERSION, "1.12.0");
66
}
77
#[test]
88
fn ascii_letters() {

0 commit comments

Comments
 (0)