Skip to content

Commit 8f3b457

Browse files
committed
upgrade to RocksDB 9.7.3
1 parent c3a637a commit 8f3b457

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
@@ -37,7 +37,7 @@ zstd-static-linking-only = ["rust-librocksdb-sys/zstd-static-linking-only"]
3737

3838
[dependencies]
3939
libc = "0.2"
40-
rust-librocksdb-sys = { path = "librocksdb-sys", version = "0.27.0" }
40+
rust-librocksdb-sys = { path = "librocksdb-sys", version = "0.28.0" }
4141
serde = { version = "1", features = ["derive"], optional = true }
4242

4343
[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.27.0+9.7.2"
3+
version = "0.28.0+9.7.3"
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 = "b5cde68b8ab2b78b3364c23c566eee14d5cc488a";
12-
static const std::string rocksdb_build_git_tag = "rocksdb_build_git_tag:v9.7.2";
11+
static const std::string rocksdb_build_git_sha = "0e2801ac30b3f283c3b14e523ba3667eca024f09";
12+
static const std::string rocksdb_build_git_tag = "rocksdb_build_git_tag:v9.7.3";
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-10-14 10:27:00";
17+
static const std::string rocksdb_build_date = "rocksdb_build_date:2024-10-17 12:29:59";
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-10-14 10:27:00";
21+
static const std::string rocksdb_build_date = "rocksdb_build_date:2024-10-17 12:29:59";
2222
#endif
2323

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

0 commit comments

Comments
 (0)