diff --git a/Cargo.lock b/Cargo.lock index 621b21c0b..43f5d553b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -289,7 +289,7 @@ dependencies = [ [[package]] name = "foundationdb" -version = "0.9.1" +version = "0.9.2" dependencies = [ "async-recursion", "async-trait", @@ -335,7 +335,7 @@ dependencies = [ [[package]] name = "foundationdb-macros" -version = "0.3.1" +version = "0.3.2" dependencies = [ "proc-macro2", "quote", @@ -345,7 +345,7 @@ dependencies = [ [[package]] name = "foundationdb-simulation" -version = "0.2.1" +version = "0.2.2" dependencies = [ "cc", "foundationdb", diff --git a/foundationdb-macros/CHANGELOG.md b/foundationdb-macros/CHANGELOG.md index 23304a4bb..9d7453580 100644 --- a/foundationdb-macros/CHANGELOG.md +++ b/foundationdb-macros/CHANGELOG.md @@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.3.2] - 2024-12-17 + +### πŸ†™ Bump + +- Bump proc-macro2 from 1.0.87 to 1.0.89 +- Bump syn from 2.0.82 to 2.0.85 +- Bump syn from 2.0.79 to 2.0.82 +- Bump proc-macro2 from 1.0.86 to 1.0.87 + +[0.3.2]: https://github.com/foundationdb-rs}/foundationdb-rs/compare/0.3.1..0.3.2 + ## [0.3.1] - 2024-10-08 ### πŸ†™ Bump diff --git a/foundationdb-macros/Cargo.toml b/foundationdb-macros/Cargo.toml index bc4429754..86b034037 100644 --- a/foundationdb-macros/Cargo.toml +++ b/foundationdb-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "foundationdb-macros" -version = "0.3.1" +version = "0.3.2" authors = [ "Pierre Zemb " ] diff --git a/foundationdb-simulation/CHANGELOG.md b/foundationdb-simulation/CHANGELOG.md index 852b83b5f..7c41ceabd 100644 --- a/foundationdb-simulation/CHANGELOG.md +++ b/foundationdb-simulation/CHANGELOG.md @@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.2.2] - 2024-12-17 + +### πŸš€ added + +- Add unit for now() + +### πŸ†™ Bump + +- Bump cc from 1.1.30 to 1.2.1 +- Bump cc from 1.1.24 to 1.1.30 + +[0.2.2]: https://github.com/foundationdb-rs}/foundationdb-rs/compare/0.2.1..0.2.2 + ## [0.2.1] - 2024-10-08 ### πŸ› Bug Fixes diff --git a/foundationdb-simulation/Cargo.toml b/foundationdb-simulation/Cargo.toml index 78655b456..65daa99d3 100644 --- a/foundationdb-simulation/Cargo.toml +++ b/foundationdb-simulation/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "foundationdb-simulation" -version = "0.2.1" +version = "0.2.2" edition = "2021" description = """ Embed Rust code within FoundationDB's simulation @@ -12,7 +12,7 @@ readme = "README.md" keywords = ["foundationdb", "simulation"] [dependencies] -foundationdb = { version = "0.9.1", path = "../foundationdb", default-features = false } +foundationdb = { version = "0.9.2", path = "../foundationdb", default-features = false } foundationdb-sys = { version = "0.9.1", path = "../foundationdb-sys", default-features = false } [build-dependencies] @@ -35,4 +35,4 @@ crate-type = ["cdylib"] required-features = ["fdb-7_3", "fdb-docker"] [dev-dependencies] -foundationdb-macros = { version = "0.3.1", path = "../foundationdb-macros", default-features = false } +foundationdb-macros = { version = "0.3.2", path = "../foundationdb-macros", default-features = false } diff --git a/foundationdb/CHANGELOG.md b/foundationdb/CHANGELOG.md index afbb32759..f44541869 100644 --- a/foundationdb/CHANGELOG.md +++ b/foundationdb/CHANGELOG.md @@ -5,6 +5,30 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.9.2] - 2024-12-17 + +### πŸš€ added + +- Add multi_version compatibility + +### πŸ› Bug Fixes + +- Test get_metadata_version on 7.3 + +### πŸ†™ Bump + +- Bump tokio from 1.40.0 to 1.41.0 +- Bump uuid from 1.10.0 to 1.11.0 +- Bump futures from 0.3.30 to 0.3.31 + +### βš™οΈ Other changes + +- Merge pull request [#173](https://github.com/spiraldb/foundationdb-rs/pull/173) from foundationdb-rs/dependabot/cargo/serde_json-1.0.132 +- Apply review changes +- Improve libfdb transaction error + +[0.9.2]: https://github.com/foundationdb-rs}/foundationdb-rs/compare/0.9.1..0.9.2 + ## [0.9.1] - 2024-10-08 ### πŸš€ added diff --git a/foundationdb/Cargo.toml b/foundationdb/Cargo.toml index e5bee2898..95d8e1064 100644 --- a/foundationdb/Cargo.toml +++ b/foundationdb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "foundationdb" -version = "0.9.1" +version = "0.9.2" authors = [ "Benjamin Fry ", "Vincent RouillΓ© ", @@ -50,7 +50,7 @@ foundationdb-gen = { version = "0.9.1", path = "../foundationdb-gen", default-fe [dependencies] foundationdb-sys = { version = "0.9.1", path = "../foundationdb-sys", default-features = false } -foundationdb-macros = { version = "0.3.1", path = "../foundationdb-macros" } +foundationdb-macros = { version = "0.3.2", path = "../foundationdb-macros" } futures = "0.3.31" memchr = "2.7.4" rand = { version = "0.8.5", features = ["default", "small_rng"] }