Bump version to 5.4.1

This commit is contained in:
Yi Wu 2017-04-28 13:36:19 -07:00
parent 71acb4c122
commit 2b621c1f83
2 changed files with 5 additions and 4 deletions

View File

@ -1,7 +1,7 @@
# Rocksdb Change Log # Rocksdb Change Log
## Unreleased ## 5.4.1 (04/28/2017)
### New Features ### Buf Fxies
* DB::ResetStats() to reset internal stats. * Fix WriteBatchWithIndex address use after scope error.
## 5.4.0 (04/11/2017) ## 5.4.0 (04/11/2017)
### Public API Change ### Public API Change
@ -17,6 +17,7 @@
* Memtable flush can be avoided during checkpoint creation if total log file size is smaller than a threshold specified by the user. * Memtable flush can be avoided during checkpoint creation if total log file size is smaller than a threshold specified by the user.
* Introduce level-based L0->L0 compactions to reduce file count, so write delays are incurred less often. * Introduce level-based L0->L0 compactions to reduce file count, so write delays are incurred less often.
* (Experimental) Partitioning filters which creates an index on the partitions. The feature can be enabled by setting partition_filters when using kFullFilter. Currently the feature also requires two-level indexing to be enabled. Number of partitions is the same as the number of partitions for indexes, which is controlled by metadata_block_size. * (Experimental) Partitioning filters which creates an index on the partitions. The feature can be enabled by setting partition_filters when using kFullFilter. Currently the feature also requires two-level indexing to be enabled. Number of partitions is the same as the number of partitions for indexes, which is controlled by metadata_block_size.
* DB::ResetStats() to reset internal stats.
## 5.3.0 (03/08/2017) ## 5.3.0 (03/08/2017)
### Public API Change ### Public API Change

View File

@ -6,7 +6,7 @@
#define ROCKSDB_MAJOR 5 #define ROCKSDB_MAJOR 5
#define ROCKSDB_MINOR 4 #define ROCKSDB_MINOR 4
#define ROCKSDB_PATCH 0 #define ROCKSDB_PATCH 1
// Do not use these. We made the mistake of declaring macros starting with // 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 // double underscore. Now we have to live with our choice. We'll deprecate these