From: anand76 Date: Thu, 6 Mar 2025 17:53:11 +0000 (-0800) Subject: Fix version numbering from 10.1.0 to 10.0.1 X-Git-Tag: v10.0.1~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=884f57ccc10feead88411f898632c267ae803b81;p=rocksdb.git Fix version numbering from 10.1.0 to 10.0.1 --- diff --git a/HISTORY.md b/HISTORY.md index fcef3186c..538d2976a 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,7 +1,7 @@ # Rocksdb Change Log > NOTE: Entries for next release do not go here. Follow instructions in `unreleased_history/README.txt` -## 10.1.0 (03/05/2025) +## 10.0.1 (03/05/2025) ### Public API Changes * Add an unordered map of name/value pairs, ReadOptions::property_bag, to pass opaque options through to an external table when creating an Iterator. * Introduced CompactionServiceJobStatus::kAborted to allow handling aborted scenario in Schedule(), Wait() or OnInstallation() APIs in Remote Compactions. diff --git a/include/rocksdb/version.h b/include/rocksdb/version.h index 104a6483d..feb767f9a 100644 --- a/include/rocksdb/version.h +++ b/include/rocksdb/version.h @@ -12,8 +12,8 @@ // NOTE: in 'main' development branch, this should be the *next* // minor or major version number planned for release. #define ROCKSDB_MAJOR 10 -#define ROCKSDB_MINOR 1 -#define ROCKSDB_PATCH 0 +#define ROCKSDB_MINOR 0 +#define ROCKSDB_PATCH 1 // Do not use these. We made the mistake of declaring macros starting with // double underscore. Now we have to live with our choice. We'll deprecate these