Skip to content

Commit

Permalink
Update version to 0.1.0
Browse files Browse the repository at this point in the history
Additionally make SONAME just in a form of
`${MAJOR_VERSION}.${MINOR_VERSION}`.

Signed-off-by: Mikhail Koviazin <[email protected]>
  • Loading branch information
mkmkme authored and bjosv committed Aug 28, 2024
1 parent 8642aa0 commit d90b75f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/valkey/valkey.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ typedef SSIZE_T ssize_t;

#include <stdint.h> /* uintXX_t, etc */

#define LIBVALKEY_MAJOR 1
#define LIBVALKEY_MINOR 2
#define LIBVALKEY_MAJOR 0
#define LIBVALKEY_MINOR 1
#define LIBVALKEY_PATCH 0
#define LIBVALKEY_SONAME "1.2.1-dev"
#define LIBVALKEY_SONAME "0.1"

/* Connection type can be blocking or non-blocking and is set in the
* least significant bit of the flags field in valkeyContext. */
Expand Down

0 comments on commit d90b75f

Please sign in to comment.