Skip to content

Commit 22c7018

Browse files
committed
Update to RocksDB 9.1.1
1 parent 938c969 commit 22c7018

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ malloc-usable-size = ["rust-librocksdb-sys/malloc-usable-size"]
3636

3737
[dependencies]
3838
libc = "0.2"
39-
rust-librocksdb-sys = { path = "librocksdb-sys", version = "0.20.0" }
39+
rust-librocksdb-sys = { path = "librocksdb-sys", version = "0.21.0" }
4040
serde = { version = "1", features = ["derive"], optional = true }
4141

4242
[dev-dependencies]

librocksdb-sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rust-librocksdb-sys"
3-
version = "0.20.0+9.1.0"
3+
version = "0.21.0+9.1.1"
44
edition = "2021"
55
rust-version = "1.75.0"
66
authors = [

librocksdb-sys/build_version.cc

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@
88

99
// The build script may replace these values with real values based
1010
// on whether or not GIT is available and the platform settings
11-
static const std::string rocksdb_build_git_sha = "bcf88d48ce8aa8b536aee4dd305533b3b83cf435";
12-
static const std::string rocksdb_build_git_tag = "rocksdb_build_git_tag:v9.1.0";
11+
static const std::string rocksdb_build_git_sha = "6f7cabeac80a3a6150be2c8a8369fcecb107bf43";
12+
static const std::string rocksdb_build_git_tag = "rocksdb_build_git_tag:v9.1.1";
1313
#define HAS_GIT_CHANGES 0
1414
#if HAS_GIT_CHANGES == 0
1515
// If HAS_GIT_CHANGES is 0, the GIT date is used.
1616
// Use the time the branch/tag was last modified
17-
static const std::string rocksdb_build_date = "rocksdb_build_date:2024-04-16 16:35:17";
17+
static const std::string rocksdb_build_date = "rocksdb_build_date:2024-04-22 11:35:44";
1818
#else
1919
// If HAS_GIT_CHANGES is > 0, the branch/tag has modifications.
2020
// Use the time the build was created.
21-
static const std::string rocksdb_build_date = "rocksdb_build_date:2024-04-16 16:35:17";
21+
static const std::string rocksdb_build_date = "rocksdb_build_date:2024-04-22 11:35:44";
2222
#endif
2323

2424
std::unordered_map<std::string, ROCKSDB_NAMESPACE::RegistrarFunc> ROCKSDB_NAMESPACE::ObjectRegistry::builtins_ = {};

0 commit comments

Comments
 (0)