Skip to content

Commit

Permalink
Bump version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
progval committed Oct 2, 2023
1 parent 163c783 commit 5be044c
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 5 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# v1.1.0

*2023-08-13*

Feature:

* Add alias search fallback to character() ([#12](https://github.com/progval/unicode_names2/pull/12))
(this adds a dependency on the `ph` crate and is slightly slower when requesting an alias
or non-existing character, this might be fixed in a future release by merging the two hash functions)

Internal:

* Avoid unnecessary rebuilds when neither data/ nor generator/ changed
* Add example executables to get name from character and vice versa ([#25](https://github.com/progval/unicode_names2/pull/15))

# v1.0.0

*2023-08-13*
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 = "unicode_names2"
edition = "2018"
rust-version = "1.63.0"
version = "1.0.0"
version = "1.1.0"
authors = [
"Huon Wilson <dbau.pp@gmail.com>",
"Kang Seonghoon <public+rust@mearie.org>",
Expand Down Expand Up @@ -46,4 +46,4 @@ rand = "0.8.5"
rand_xorshift = "0.3.0"

[build-dependencies]
unicode_names2_generator = { version = "1.0.0", path = "generator" }
unicode_names2_generator = { version = "1.1.0", path = "generator" }
2 changes: 1 addition & 1 deletion generator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
name = "unicode_names2_generator"
edition = "2018"
rust-version = "1.63.0"
version = "1.0.0"
version = "1.1.0"
authors = ["Huon Wilson <dbau.pp@gmail.com>"]
homepage = "https://github.com/progval/unicode_names2"
repository = "https://github.com/progval/unicode_names2"
Expand Down
4 changes: 2 additions & 2 deletions unicode_names2_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

name = "unicode_names2_macros"
edition = "2018"
version = "1.0.0"
version = "1.1.0"
authors = [
"Huon Wilson <dbau.pp@gmail.com>",
"Valentin Lorentz <progval+git@progval.net>"
Expand All @@ -25,7 +25,7 @@ syn = "2.0"

[dependencies.unicode_names2]
path = ".."
version = "1.0.0"
version = "1.1.0"

[lib]
name = "unicode_names2_macros"
Expand Down

0 comments on commit 5be044c

Please sign in to comment.