Skip to content

Commit

Permalink
tinystr 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zbraniecki committed Oct 12, 2020
1 parent 7cbc331 commit fd56927
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

-

## tinystr 0.4.0 (October 12, 2020)

- Improve macros ergonomics by separating `tinystr-raw` crate.

## tinystr 0.3.4 (August 21, 2020)

- Add `macros` feature which exposes `tinystr::macros`.
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "tinystr"
description = """
A small ASCII-only bounded length string representation.
"""
version = "0.3.4"
version = "0.4.0"
authors = ["Raph Levien <[email protected]>", "Zibi Braniecki <[email protected]>", "Shane F. Carr <[email protected]>"]
edition = "2018"
license = "Apache-2.0/MIT"
Expand All @@ -13,7 +13,7 @@ keywords = ["string", "str", "small", "tiny", "no_std"]
categories = ["data-structures"]

[dependencies]
tinystr-macros = { version = "0.1", path = "./macros" }
tinystr-macros = { version = "0.2", path = "./macros" }
tinystr-raw = { version = "0.1", path = "./raw" }

[dev-dependencies]
Expand Down
5 changes: 2 additions & 3 deletions macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "tinystr-macros"
description = """
Proc macros for TinyStr.
"""
version = "0.1.0"
version = "0.2.0"
authors = ["Zibi Braniecki <[email protected]>", "Shane F. Carr <[email protected]>"]
edition = "2018"
license = "Apache-2.0/MIT"
Expand All @@ -16,5 +16,4 @@ categories = ["data-structures"]
proc_macro = true

[dependencies]
tinystr = "0.3"
tinystr-raw = { path = "../raw" }
tinystr-raw = { version = "0.1", path = "../raw" }

0 comments on commit fd56927

Please sign in to comment.