Skip to content

Commit

Permalink
Merge pull request #52 from zhangsoledad/zhangsoledad/854
Browse files Browse the repository at this point in the history
chore: Update RocksDB to 8.5.4
  • Loading branch information
zhangsoledad authored Oct 19, 2023
2 parents c37d9f7 + 134406f commit 9a7a824
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ckb-rocksdb"
description = "Rust wrapper for Facebook's RocksDB embeddable database"
version = "0.21.0"
version = "0.21.1"
edition = "2018"
authors = ["Tyler Neely <[email protected]>", "David Greenberg <[email protected]>", "Nervos Core Dev <[email protected]>"]
license = "Apache-2.0"
Expand Down Expand Up @@ -31,7 +31,7 @@ march-native = ["librocksdb-sys/march-native"]

[dependencies]
libc = "0.2"
librocksdb-sys = { package = "ckb-librocksdb-sys", path = "librocksdb-sys", version = "=8.5.3" }
librocksdb-sys = { package = "ckb-librocksdb-sys", path = "librocksdb-sys", version = "=8.5.4" }
tempfile = "3"

[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 = "ckb-librocksdb-sys"
version = "8.5.3"
version = "8.5.4"
edition = "2018"
authors = ["Karl Hobley <[email protected]>", "Arkadiy Paronyan <[email protected]>", "Nervos Core Dev <[email protected]>"]
license = "MIT/Apache-2.0/BSD-3-Clause"
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 = "rocksdb_build_git_sha:f32521662acf3352397d438b732144c7813bbbec";
static const std::string rocksdb_build_git_tag = "rocksdb_build_git_tag:v8.5.3";
static const std::string rocksdb_build_git_sha = "rocksdb_build_git_sha:145a50ba007326eab90da9b12d697b35f5b60e7d";
static const std::string rocksdb_build_git_tag = "rocksdb_build_git_tag:v8.5.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:2023-09-01 13:58:39";
static const std::string rocksdb_build_date = "rocksdb_build_date:2023-09-26 19:47:02";
#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:2023-09-21 10:21:22";
static const std::string rocksdb_build_date = "rocksdb_build_date:2023-10-12 09:08:22";
#endif

extern "C" {
Expand Down
2 changes: 1 addition & 1 deletion librocksdb-sys/rocksdb

0 comments on commit 9a7a824

Please sign in to comment.