-
Notifications
You must be signed in to change notification settings - Fork 687
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prepare for Valkey 8.0 RC1 release #850
Conversation
Signed-off-by: Ping Xie <[email protected]>
Signed-off-by: Ping Xie <[email protected]>
Co-authored-by: Binbin <[email protected]> Signed-off-by: Ping Xie <[email protected]>
src/version.h
Outdated
@@ -4,8 +4,8 @@ | |||
* similar. */ | |||
#define SERVER_NAME "valkey" | |||
#define SERVER_TITLE "Valkey" | |||
#define VALKEY_VERSION "255.255.255" | |||
#define VALKEY_VERSION_NUM 0x00ffffff | |||
#define VALKEY_VERSION "7.255.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In Redis, version 7.4-rc1 defines as
#define REDIS_VERSION "7.3.240"
#define REDIS_VERSION_NUM 0x000703f0
version 7.0-rc1 defines as
#define REDIS_VERSION "6.9.240"
#define REDIS_VERSION_NUM 0x000609f0
Thus, here I think we should define 8.0 RC1 as
#define VALKEY_VERSION "7.9.240"
#define VALKEY_VERSION_NUM 0x000709f0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For some reason I thought we used 0 in the patch, I think 240 is fine.
Signed-off-by: Madelyn Olson <[email protected]>
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## 8.0 #850 +/- ##
======================================
Coverage ? 70.21%
======================================
Files ? 112
Lines ? 61467
Branches ? 0
======================================
Hits ? 43159
Misses ? 18308
Partials ? 0 |
Signed-off-by: Ping Xie <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think I went through all my old notes now.
Co-authored-by: Madelyn Olson <[email protected]> Signed-off-by: Ping Xie <[email protected]>
Co-authored-by: Madelyn Olson <[email protected]> Signed-off-by: Ping Xie <[email protected]>
Signed-off-by: Ping Xie <[email protected]>
Signed-off-by: Ping Xie <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm happy.
No description provided.