Skip to content

Commit

Permalink
Bump version to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
progval committed Aug 13, 2023
1 parent 88c8b30 commit 048039b
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 10 deletions.
48 changes: 48 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# v1.0.0

*2023-08-13*

Breaking:

* Bump minimum Rust version from 1.48 to 1.63
* Bump dependencies ([#22](https://github.com/progval/unicode_names2/pull/22), [#23](https://github.com/progval/unicode_names2/pull/23))

Features:

* Build the perfect-hash function deterministically ([#13](https://github.com/progval/unicode_names2/pull/13)
* Build the perfect-hash function at compile time from unicode data, instead of being
in version control and shipped on crates.io ([#17](https://github.com/progval/unicode_names2/pull/17))

Internal:

* Run Rustfmt + Clippy on CI and fix warnings ([#14](https://github.com/progval/unicode_names2/pull/14), [#15](https://github.com/progval/unicode_names2/pull/15))

# v0.6.0

*2022-10-13*

Data:

* Update data for Unicode 15 ([#10](https://github.com/progval/unicode_names2/pull/))

# v0.5.1

*2022-08-09*

Bug fixes:

* Fix panic when character() is passed a string over 88 chars ([#7](https://github.com/progval/unicode_names2/pull/7))
* Fix compilation warnings ([#5](https://github.com/progval/unicode_names2/pull/5))

Internal:

* Replace Travis with Github Workflows as CI ([#8](https://github.com/progval/unicode_names2/pull/8))
* Run CI on sub-crates ([#9](https://github.com/progval/unicode_names2/pull/9))

# v0.5.0

*2022-02-06*

Data:

* Update to Unicode 14.0.0 ([#4](https://github.com/progval/unicode_names2/pull/4))
10 changes: 3 additions & 7 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 = "0.6.0"
version = "1.0.0"
authors = [
"Huon Wilson <dbau.pp@gmail.com>",
"Kang Seonghoon <public+rust@mearie.org>",
Expand All @@ -25,10 +25,6 @@ but still offering O(1)* look-up in both directions. (*more precisely,
O(length of name).)
"""

exclude = [
"data/*",
]

[workspace]
members = [".", "generator"]

Expand All @@ -40,11 +36,11 @@ no_std = []

[dev-dependencies.unicode_names2_macros]
path = "unicode_names2_macros"
version = ">=0.3, <0.7"
version = ">=0.3, <2.0"

[dev-dependencies]
rand = "0.8.5"
rand_xorshift = "0.3.0"

[build-dependencies]
unicode_names2_generator = { path = "generator" }
unicode_names2_generator = { version = "1.0.0", path = "generator" }
6 changes: 3 additions & 3 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 = "0.6.0"
version = "1.0.0"
authors = [
"Huon Wilson <dbau.pp@gmail.com>",
"Valentin Lorentz <progval+git@progval.net>"
Expand All @@ -11,7 +11,7 @@ authors = [
homepage = "https://github.com/progval/unicode_names2"
repository = "https://github.com/progval/unicode_names2"
documentation = "https://docs.rs/unicode_names2/"
license = "MIT or Apache-2.0"
license = "MIT/Apache-2.0"
keywords = ["text", "unicode", "macro"]
description = "Support macros for `unicode_names2`."

Expand All @@ -25,7 +25,7 @@ syn = "2.0"

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

[lib]
name = "unicode_names2_macros"
Expand Down

0 comments on commit 048039b

Please sign in to comment.