Version bump

This commit is contained in:
Frank Denis 2014-09-18 22:47:11 -07:00
parent abd5df9ba1
commit 05f46af70e
4 changed files with 13 additions and 7 deletions

View File

@ -1,4 +1,10 @@
* Version 0.7.1 (1.0 RC2)
- This is the second release candidate of Sodium 1.0. Minor
compilation, readability and portability changes have been made and the
test suite was improved, but the API is the same as the previous release
candidate.
* Version 0.7.0 (1.0 RC1)
- Allocating memory to store sensitive data can now be done using
sodium_malloc() and sodium_allocarray(). These functions add guard

View File

@ -4,10 +4,10 @@
#include "export.h"
#define SODIUM_VERSION_STRING "0.7.0"
#define SODIUM_VERSION_STRING "0.7.1"
#define SODIUM_LIBRARY_VERSION_MAJOR 7
#define SODIUM_LIBRARY_VERSION_MINOR 0
#define SODIUM_LIBRARY_VERSION_MINOR 1
#ifdef __cplusplus
extern "C" {

View File

@ -1,5 +1,5 @@
AC_PREREQ([2.65])
AC_INIT([libsodium],[0.7.0],
AC_INIT([libsodium],[0.7.1],
[https://github.com/jedisct1/libsodium/issues],
[libsodium],
[https://github.com/jedisct1/libsodium])
@ -16,9 +16,9 @@ ISODATE=`date +%Y-%m-%d`
AC_SUBST(ISODATE)
SODIUM_LIBRARY_VERSION_MAJOR=7
SODIUM_LIBRARY_VERSION_MINOR=0
SODIUM_LIBRARY_VERSION_MINOR=1
DLL_VERSION=6
SODIUM_LIBRARY_VERSION=13:0:0
SODIUM_LIBRARY_VERSION=13:1:0
# | | |
# +------+ | +---+
# | | |

View File

@ -1,4 +1,4 @@
cscript msvc-scripts/rep.vbs //Nologo s/@VERSION@/0.7.0/ < src\libsodium\include\sodium\version.h.in > tmp
cscript msvc-scripts/rep.vbs //Nologo s/@VERSION@/0.7.1/ < src\libsodium\include\sodium\version.h.in > tmp
cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_VERSION_MAJOR@/7/ < tmp > tmp2
cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_VERSION_MINOR@/0/ < tmp2 > src\libsodium\include\sodium\version.h
cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_VERSION_MINOR@/1/ < tmp2 > src\libsodium\include\sodium\version.h
del tmp tmp2