Skip to content

Commit

Permalink
upgrade to RocksDB 9.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
zaidoon1 committed Nov 1, 2024
1 parent 091d9cc commit 6dad602
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ zstd-static-linking-only = ["rust-librocksdb-sys/zstd-static-linking-only"]

[dependencies]
libc = "0.2"
rust-librocksdb-sys = { path = "librocksdb-sys", version = "0.28.0" }
rust-librocksdb-sys = { path = "librocksdb-sys", version = "0.29.0" }
serde = { version = "1", features = ["derive"], optional = true }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion librocksdb-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust-librocksdb-sys"
version = "0.28.0+9.7.3"
version = "0.29.0+9.7.4"
edition = "2021"
rust-version = "1.75.0"
authors = [
Expand Down
8 changes: 4 additions & 4 deletions librocksdb-sys/build_version.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@

// The build script may replace these values with real values based
// on whether or not GIT is available and the platform settings
static const std::string rocksdb_build_git_sha = "0e2801ac30b3f283c3b14e523ba3667eca024f09";
static const std::string rocksdb_build_git_tag = "rocksdb_build_git_tag:v9.7.3";
static const std::string rocksdb_build_git_sha = "3c27a3dde0993210c5cc30d99717093f7537916f";
static const std::string rocksdb_build_git_tag = "rocksdb_build_git_tag:v9.7.4";
#define HAS_GIT_CHANGES 0
#if HAS_GIT_CHANGES == 0
// If HAS_GIT_CHANGES is 0, the GIT date is used.
// Use the time the branch/tag was last modified
static const std::string rocksdb_build_date = "rocksdb_build_date:2024-10-17 12:29:59";
static const std::string rocksdb_build_date = "rocksdb_build_date:2024-11-01 08:32:35";
#else
// If HAS_GIT_CHANGES is > 0, the branch/tag has modifications.
// Use the time the build was created.
static const std::string rocksdb_build_date = "rocksdb_build_date:2024-10-17 12:29:59";
static const std::string rocksdb_build_date = "rocksdb_build_date:2024-11-01 08:32:35";
#endif

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

0 comments on commit 6dad602

Please sign in to comment.