diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..ff752e3 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,9 @@ +# Changelog + +## Next release + +## 0.2.0 - 2025-03-28 + +### Added + +- Support for WASM targets diff --git a/Cargo.lock b/Cargo.lock index 787d61b..fc01aed 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -217,7 +217,7 @@ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" [[package]] name = "stringleton" -version = "0.1.1" +version = "0.2.0" dependencies = [ "ctor", "hashbrown", @@ -228,7 +228,7 @@ dependencies = [ [[package]] name = "stringleton-dylib" -version = "0.1.1" +version = "0.2.0" dependencies = [ "ctor", "linkme", @@ -237,7 +237,7 @@ dependencies = [ [[package]] name = "stringleton-registry" -version = "0.1.1" +version = "0.2.0" dependencies = [ "hashbrown", "once_cell", diff --git a/stringleton-dylib/Cargo.toml b/stringleton-dylib/Cargo.toml index 9763678..9cfa85a 100644 --- a/stringleton-dylib/Cargo.toml +++ b/stringleton-dylib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stringleton-dylib" -version = "0.1.1" +version = "0.2.0" edition = "2024" authors = ["Simon Ask Ulsnes "] license = "MIT OR Apache-2.0" @@ -16,7 +16,7 @@ crate-type = ["dylib"] [dependencies] ctor.workspace = true linkme.workspace = true -stringleton-registry = { version = "0.1.1", path = "../stringleton-registry", default-features = false } +stringleton-registry = { version = "0.2.0", path = "../stringleton-registry", default-features = false } [features] default = ["std"] diff --git a/stringleton-registry/Cargo.toml b/stringleton-registry/Cargo.toml index 64c413c..f6d7ab5 100644 --- a/stringleton-registry/Cargo.toml +++ b/stringleton-registry/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stringleton-registry" -version = "0.1.1" +version = "0.2.0" edition = "2024" authors = ["Simon Ask Ulsnes "] license = "MIT OR Apache-2.0" diff --git a/stringleton/Cargo.toml b/stringleton/Cargo.toml index c9b7307..dc08e84 100644 --- a/stringleton/Cargo.toml +++ b/stringleton/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stringleton" -version = "0.1.1" +version = "0.2.0" edition = "2024" authors = ["Simon Ask Ulsnes "] license = "MIT OR Apache-2.0" @@ -16,7 +16,7 @@ crate-type = ["rlib"] [dependencies] ctor.workspace = true linkme.workspace = true -stringleton-registry = { version = "0.1.1", path = "../stringleton-registry", default-features = false } +stringleton-registry = { version = "0.2.0", path = "../stringleton-registry", default-features = false } [dev-dependencies] hashbrown.workspace = true