Skip to content

Commit

Permalink
Bump version to 1.15.1
Browse files Browse the repository at this point in the history
  • Loading branch information
a-merezhanyi committed Nov 8, 2022
1 parent 6accc7b commit 5b61c85
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.15.0"
version = "1.15.1"
authors = ["A. Merezhanyi <a.merezhanyi@gmail.com>"]
license = "MIT"
description = "Voca_rs is a Rust library for manipulating [unicode] strings"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# voca_rs

[![Crates version](https://img.shields.io/crates/v/voca_rs.svg)](https://crates.io/crates/voca_rs)
[![dependency status](https://deps.rs/crate/voca_rs/1.15.0/status.svg)](https://deps.rs/crate/voca_rs/1.15.0)
[![dependency status](https://deps.rs/crate/voca_rs/1.15.1/status.svg)](https://deps.rs/crate/voca_rs/1.15.1)
[![Build Status](https://app.travis-ci.com/a-merezhanyi/voca_rs.svg?branch=master)](https://app.travis-ci.com/a-merezhanyi/voca_rs)
[![codecov](https://codecov.io/gh/a-merezhanyi/voca_rs/branch/master/graph/badge.svg?token=uSEi0L8ivo)](https://codecov.io/gh/a-merezhanyi/voca_rs)
[![license](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
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.15.0"
/// // => "1.15.1"
/// ```
pub const VERSION: &str = "1.15.0";
pub const VERSION: &str = "1.15.1";

/// 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.15.0");
assert_eq!(voca_rs::utils::VERSION, "1.15.1");
}
#[test]
fn ascii_letters() {
Expand Down

0 comments on commit 5b61c85

Please sign in to comment.