Skip to content

Commit

Permalink
Bump to 1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
a-merezhanyi committed Mar 21, 2020
1 parent 67e7f49 commit 4050b6f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "voca_rs"
version = "1.9.1"
version = "1.10.0"
authors = ["Anatol Merezhanyi <a.merezhanyi@gmail.com>"]
license = "MIT"
description = "Voca_rs is a Rust library for manipulating strings. Inspired by Voca.js and string.py"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 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.9.1/status.svg)](https://deps.rs/crate/voca_rs/1.9.1) [![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)
# 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.10.0/status.svg)](https://deps.rs/crate/voca_rs/1.10.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)

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

Expand Down
4 changes: 2 additions & 2 deletions src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
/// ```
/// use voca_rs::*;
/// utils::VERSION;
/// // => "1.10"
/// // => "1.10.0"
/// ```
pub const VERSION: &str = "1.10";
pub const VERSION: &str = "1.10.0";

/// The concatenation of the `ascii_lowercase` and `ascii_uppercase` constants described below. This value is not locale-dependent.
///
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#[test]
fn version() {
assert_eq!(voca_rs::utils::VERSION, "1.10");
assert_eq!(voca_rs::utils::VERSION, "1.10.0");
}
#[test]
fn ascii_letters() {
Expand Down

0 comments on commit 4050b6f

Please sign in to comment.