Skip to content

Commit 93ca8d9

Browse files
chore: release
1 parent 8a71d79 commit 93ca8d9

File tree

10 files changed

+88
-12
lines changed

10 files changed

+88
-12
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

foundationdb-gen/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.9.2] - 2025-01-08
9+
10+
### <!-- 3 -->🆙 Bump
11+
12+
- Bump xml-rs from 0.8.22 to 0.8.24
13+
14+
[0.9.2]: https://github.com/foundationdb-rs}/foundationdb-rs/compare/0.9.1..0.9.2
15+
816
## [0.9.1] - 2024-10-08
917

1018
### <!-- 3 -->🆙 Bump

foundationdb-gen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "foundationdb-gen"
3-
version = "0.9.1"
3+
version = "0.9.2"
44
authors = [
55
"Jihyun Yu <[email protected]>",
66
"Vincent Rouillé <[email protected]>",

foundationdb-macros/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.3.2] - 2025-01-08
9+
10+
### <!-- 3 -->🆙 Bump
11+
12+
- Bump proc-macro2 from 1.0.89 to 1.0.92
13+
- Bump syn from 2.0.85 to 2.0.87
14+
- Bump proc-macro2 from 1.0.87 to 1.0.89
15+
- Bump syn from 2.0.82 to 2.0.85
16+
- Bump syn from 2.0.79 to 2.0.82
17+
- Bump proc-macro2 from 1.0.86 to 1.0.87
18+
19+
[0.3.2]: https://github.com/foundationdb-rs}/foundationdb-rs/compare/0.3.1..0.3.2
20+
821
## [0.3.1] - 2024-10-08
922

1023
### <!-- 3 -->🆙 Bump

foundationdb-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "foundationdb-macros"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
authors = [
55
"Pierre Zemb <[email protected]>"
66
]

foundationdb-simulation/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.2.2] - 2025-01-08
9+
10+
### <!-- 0 -->🚀 added
11+
12+
- Add unit for now()
13+
14+
### <!-- 3 -->🆙 Bump
15+
16+
- Bump cc from 1.1.30 to 1.2.1
17+
- Bump cc from 1.1.24 to 1.1.30
18+
19+
[0.2.2]: https://github.com/foundationdb-rs}/foundationdb-rs/compare/0.2.1..0.2.2
20+
821
## [0.2.1] - 2024-10-08
922

1023
### <!-- 1 -->🐛 Bug Fixes

foundationdb-simulation/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "foundationdb-simulation"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
edition = "2021"
55
description = """
66
Embed Rust code within FoundationDB's simulation
@@ -12,7 +12,7 @@ readme = "README.md"
1212
keywords = ["foundationdb", "simulation"]
1313

1414
[dependencies]
15-
foundationdb = { version = "0.9.1", path = "../foundationdb", default-features = false }
15+
foundationdb = { version = "0.9.2", path = "../foundationdb", default-features = false }
1616
foundationdb-sys = { version = "0.9.1", path = "../foundationdb-sys", default-features = false }
1717

1818
[build-dependencies]
@@ -35,4 +35,4 @@ crate-type = ["cdylib"]
3535
required-features = ["fdb-7_3", "fdb-docker"]
3636

3737
[dev-dependencies]
38-
foundationdb-macros = { version = "0.3.1", path = "../foundationdb-macros", default-features = false }
38+
foundationdb-macros = { version = "0.3.2", path = "../foundationdb-macros", default-features = false }

foundationdb-tuple/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [0.9.1] - 2025-01-08
9+
10+
### <!-- 4 -->⚙️ Other changes
11+
12+
- Update release
13+
- Split the fdb-tuple module into its own crate
14+
15+

foundationdb/CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,33 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.9.2] - 2025-01-08
9+
10+
### <!-- 0 -->🚀 added
11+
12+
- Add multi_version compatibility
13+
14+
### <!-- 1 -->🐛 Bug Fixes
15+
16+
- Test get_metadata_version on 7.3
17+
18+
### <!-- 3 -->🆙 Bump
19+
20+
- Bump async-trait from 0.1.83 to 0.1.84
21+
- Bump tokio from 1.40.0 to 1.41.0
22+
- Bump uuid from 1.10.0 to 1.11.0
23+
- Bump futures from 0.3.30 to 0.3.31
24+
25+
### <!-- 4 -->⚙️ Other changes
26+
27+
- Merge pull request [#211](https://github.com/PierreZ/foundationdb-rs/pull/211) from foundationdb-rs/dependabot/cargo/serde-1.0.217
28+
- Merge pull request [#190](https://github.com/PierreZ/foundationdb-rs/pull/190) from spiraldb/ji/split-tuple-into-crate
29+
- Merge pull request [#173](https://github.com/PierreZ/foundationdb-rs/pull/173) from foundationdb-rs/dependabot/cargo/serde_json-1.0.132
30+
- Apply review changes
31+
- Improve libfdb transaction error
32+
33+
[0.9.2]: https://github.com/foundationdb-rs}/foundationdb-rs/compare/0.9.1..0.9.2
34+
835
## [0.9.1] - 2024-10-08
936

1037
### <!-- 0 -->🚀 added

foundationdb/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "foundationdb"
3-
version = "0.9.1"
3+
version = "0.9.2"
44
authors = [
55
"Benjamin Fry <[email protected]>",
66
"Vincent Rouillé <[email protected]>",
@@ -48,11 +48,11 @@ fdb-7_3 = ["foundationdb-sys/fdb-7_3", "foundationdb-gen/fdb-7_3", "serde", "ser
4848
tenant-experimental = []
4949

5050
[build-dependencies]
51-
foundationdb-gen = { version = "0.9.1", path = "../foundationdb-gen", default-features = false }
51+
foundationdb-gen = { version = "0.9.2", path = "../foundationdb-gen", default-features = false }
5252

5353
[dependencies]
5454
foundationdb-sys = { version = "0.9.1", path = "../foundationdb-sys", default-features = false }
55-
foundationdb-macros = { version = "0.3.1", path = "../foundationdb-macros" }
55+
foundationdb-macros = { version = "0.3.2", path = "../foundationdb-macros" }
5656
foundationdb-tuple = { version = "0.9.1", path = "../foundationdb-tuple" }
5757
futures = "0.3.31"
5858
memchr = "2.7.4"

0 commit comments

Comments
 (0)