Skip to content

Commit

Permalink
release version 1.0.5 (#97)
Browse files Browse the repository at this point in the history
* update version 1.0.5

* change CRDT-RELEASENOTES

* Update CRDT-RELEASENOTES

* Update CRDT-RELEASENOTES

Co-authored-by: Chen <[email protected]>
  • Loading branch information
qiongtubao and NickNYU authored Aug 8, 2020
1 parent f8d3850 commit ab0cd2e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions CRDT-RELEASENOTES
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,19 @@ MODERATE: Program an upgrade of the server, but it's not urgent.
HIGH: There is a critical bug that may affect a subset of users. Upgrade!
CRITICAL: There is a critical bug affecting MOST USERS. Upgrade ASAP.
--------------------------------------------------------------------------------
================================================================================
XRedis-CRDT 1.0.5 Released Sat Aug 8 20:59:30 CST 2020
================================================================================
Upgrade urgency LOW: Compared with the previous version, there are some improvements, mainly:
Major things:
* [bugfix] a out-of-bound memory access will happen when loading RDB file.
* [opt] master-master psync: an enhanced partial sync implementation is now allowed for master-master replication while master-slave switching.
* slave now is able to record offsets for peer-masters replication.
* PSYNC2.0 also works for master-master replication.
* [opt] shrink down conflict by reducing simutenously expiration.
* [opt] seeking for peer-master is theoretically faster than before.
* [opt] better performance for master-master replication stream offset calculation.

================================================================================
XRedis-CRDT 1.0.4 Released Tue Jun 9 15:58:31 CST 2020
================================================================================
Expand Down
2 changes: 1 addition & 1 deletion package.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
APP=xredis-crdt
Version=1.0.4
Version=1.0.5
Package=$APP-$Version

find . -name ctrip.h -exec sed -i "s/XREDIS_CRDT_VERSION \"\(.*\)\"/XREDIS_CRDT_VERSION \"$Version\"/" {} \;
Expand Down
2 changes: 1 addition & 1 deletion src/ctrip.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#ifndef SRC_CTRIP_H_
#define SRC_CTRIP_H_

#define XREDIS_CRDT_VERSION "1.0.4"
#define XREDIS_CRDT_VERSION "1.0.5"
#define CONFIG_DEFAULT_SLAVE_REPLICATE_ALL 0

void xslaveofCommand(client *c);
Expand Down

0 comments on commit ab0cd2e

Please sign in to comment.