Skip to content

Commit

Permalink
Bump library version
Browse files Browse the repository at this point in the history
  • Loading branch information
jedisct1 committed Oct 1, 2017
1 parent 2542367 commit a8ebd37
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions builds/msvc/resource.rc
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
#include "windows.h"

//specify the version numbers for the dll's
#define LIBSODIUM_VERSION_STRING "1.0.14.0"
#define LIBSODIUM_VERSION_BIN 1,0,14,0
#define LIBSODIUM_VERSION_STRING "1.0.15.0"
#define LIBSODIUM_VERSION_BIN 1,0,15,0

//specify the product name for the dlls based on the platform we are compiling for
#if defined(x64)
Expand Down
6 changes: 3 additions & 3 deletions builds/msvc/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

#include "export.h"

#define SODIUM_VERSION_STRING "1.0.14"
#define SODIUM_VERSION_STRING "1.0.15"

#define SODIUM_LIBRARY_VERSION_MAJOR 9
#define SODIUM_LIBRARY_VERSION_MINOR 6
#define SODIUM_LIBRARY_VERSION_MAJOR 10
#define SODIUM_LIBRARY_VERSION_MINOR 0

#ifdef __cplusplus
extern "C" {
Expand Down
8 changes: 4 additions & 4 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AC_PREREQ([2.65])
AC_INIT([libsodium],[1.0.14],
AC_INIT([libsodium],[1.0.15],
[https://github.com/jedisct1/libsodium/issues],
[libsodium],
[https://github.com/jedisct1/libsodium])
Expand All @@ -16,10 +16,10 @@ AC_SUBST(VERSION)
ISODATE=`date +%Y-%m-%d`
AC_SUBST(ISODATE)

SODIUM_LIBRARY_VERSION_MAJOR=9
SODIUM_LIBRARY_VERSION_MINOR=6
SODIUM_LIBRARY_VERSION_MAJOR=10
SODIUM_LIBRARY_VERSION_MINOR=0
DLL_VERSION=8
SODIUM_LIBRARY_VERSION=22:0:4
SODIUM_LIBRARY_VERSION=23:0:0
# | | |
# +------+ | +---+
# | | |
Expand Down
6 changes: 3 additions & 3 deletions msvc-scripts/process.bat
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cscript msvc-scripts/rep.vbs //Nologo s/@VERSION@/1.0.14/ < src\libsodium\include\sodium\version.h.in > tmp
cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_VERSION_MAJOR@/9/ < tmp > tmp2
cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_VERSION_MINOR@/6/ < tmp2 > tmp3
cscript msvc-scripts/rep.vbs //Nologo s/@VERSION@/1.0.15/ < src\libsodium\include\sodium\version.h.in > tmp
cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_VERSION_MAJOR@/10/ < tmp > tmp2
cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_VERSION_MINOR@/0/ < tmp2 > tmp3
cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_MINIMAL_DEF@// < tmp3 > src\libsodium\include\sodium\version.h
del tmp tmp2 tmp3

0 comments on commit a8ebd37

Please sign in to comment.