Skip to content

Commit

Permalink
tinystr 0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
zbraniecki committed Feb 18, 2021
1 parent 1f8976b commit 5781ba7
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@

-

## tinystr 0.4.3 (February 18, 2021)

- Implement `Error` for errors.
- Implement `serde` support.

## tinystr 0.4.2 (January 14, 2021)

- Add `repr(transparent)`.

## tinystr 0.4.1 (October 13, 2020)

- Improve macro re-export.
Expand Down
11 changes: 8 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,13 @@ name = "tinystr"
description = """
A small ASCII-only bounded length string representation.
"""
version = "0.4.2"
authors = ["Raph Levien <[email protected]>", "Zibi Braniecki <[email protected]>", "Shane F. Carr <[email protected]>"]
version = "0.4.3"
authors = [
"Raph Levien <[email protected]>",
"Zibi Braniecki <[email protected]>",
"Shane F. Carr <[email protected]>",
"Manish Goregaokar <[email protected]>"
]
edition = "2018"
license = "Apache-2.0/MIT"
repository = "https://github.com/zbraniecki/tinystr"
Expand All @@ -15,7 +20,7 @@ categories = ["data-structures"]
[dependencies]
serde = { version = "1.0.123", optional = true }
tinystr-macros = { version = "0.2", path = "./macros" }
tinystr-raw = { version = "0.1", path = "./raw" }
tinystr-raw = { version = "0.1.1", path = "./raw" }

[dev-dependencies]
criterion = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion raw/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "tinystr-raw"
description = """
Raw string-to-integer conversions for tinystr.
"""
version = "0.1.0"
version = "0.1.1"
authors = ["Zibi Braniecki <[email protected]>", "Shane F. Carr <[email protected]>"]
edition = "2018"
license = "Apache-2.0/MIT"
Expand Down

0 comments on commit 5781ba7

Please sign in to comment.