mirror of
https://github.com/jedisct1/libsodium.git
synced 2024-12-19 10:05:05 -07:00
Bump dev version
This commit is contained in:
parent
44b99c5a23
commit
712d0f3fb9
@ -1,4 +1,4 @@
|
|||||||
version: 1.0.20.{build}
|
version: 1.0.21.{build}
|
||||||
|
|
||||||
os: Visual Studio 2017
|
os: Visual Studio 2017
|
||||||
|
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
#include "windows.h"
|
#include "windows.h"
|
||||||
|
|
||||||
//specify the version numbers for the dll's
|
//specify the version numbers for the dll's
|
||||||
#define LIBSODIUM_VERSION_STRING "1.0.20.0"
|
#define LIBSODIUM_VERSION_STRING "1.0.21.0"
|
||||||
#define LIBSODIUM_VERSION_BIN 1,0,20,0
|
#define LIBSODIUM_VERSION_BIN 1,0,21,0
|
||||||
|
|
||||||
//specify the product name for the dlls based on the platform we are compiling for
|
//specify the product name for the dlls based on the platform we are compiling for
|
||||||
#if defined(x64)
|
#if defined(x64)
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
#include "export.h"
|
#include "export.h"
|
||||||
|
|
||||||
#define SODIUM_VERSION_STRING "1.0.20"
|
#define SODIUM_VERSION_STRING "1.0.21"
|
||||||
|
|
||||||
#define SODIUM_LIBRARY_VERSION_MAJOR 28
|
#define SODIUM_LIBRARY_VERSION_MAJOR 28
|
||||||
#define SODIUM_LIBRARY_VERSION_MINOR 0
|
#define SODIUM_LIBRARY_VERSION_MINOR 0
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
cscript msvc-scripts/rep.vbs //Nologo s/@VERSION@/1.0.20/ < ..\..\src\libsodium\include\sodium\version.h.in > tmp
|
cscript msvc-scripts/rep.vbs //Nologo s/@VERSION@/1.0.21/ < ..\..\src\libsodium\include\sodium\version.h.in > tmp
|
||||||
cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_VERSION_MAJOR@/28/ < tmp > tmp2
|
cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_VERSION_MAJOR@/28/ < 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_VERSION_MINOR@/0/ < tmp2 > tmp3
|
||||||
cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_MINIMAL_DEF@// < tmp3 > ..\..\src\libsodium\include\sodium\version.h
|
cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_MINIMAL_DEF@// < tmp3 > ..\..\src\libsodium\include\sodium\version.h
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
AC_PREREQ([2.69])
|
AC_PREREQ([2.69])
|
||||||
AC_INIT([libsodium],[1.0.20],[https://github.com/jedisct1/libsodium/issues],[libsodium],[https://libsodium.org])
|
AC_INIT([libsodium],[1.0.21],[https://github.com/jedisct1/libsodium/issues],[libsodium],[https://libsodium.org])
|
||||||
AC_CONFIG_AUX_DIR([build-aux])
|
AC_CONFIG_AUX_DIR([build-aux])
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
AC_CONFIG_SRCDIR([src/libsodium/sodium/version.c])
|
AC_CONFIG_SRCDIR([src/libsodium/sodium/version.c])
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
# The x86 static library will not work due to text relocation rules, so static x86 versions are limited to shared libraries.
|
# The x86 static library will not work due to text relocation rules, so static x86 versions are limited to shared libraries.
|
||||||
# To simplify linking, library variants have distinct names: sodium, sodium-static, sodium-minimal and sodium-minimal-static.
|
# To simplify linking, library variants have distinct names: sodium, sodium-static, sodium-minimal and sodium-minimal-static.
|
||||||
|
|
||||||
SODIUM_VERSION="1.0.20.0"
|
SODIUM_VERSION="1.0.21.0"
|
||||||
NDK_VERSION=$(grep "Pkg.Revision = " <"${ANDROID_NDK_HOME}/source.properties" | cut -f 2 -d '=' | cut -f 2 -d' ' | cut -f 1 -d'.')
|
NDK_VERSION=$(grep "Pkg.Revision = " <"${ANDROID_NDK_HOME}/source.properties" | cut -f 2 -d '=' | cut -f 2 -d' ' | cut -f 1 -d'.')
|
||||||
DEST_PATH=$(mktemp -d)
|
DEST_PATH=$(mktemp -d)
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<PackageId>libsodium</PackageId>
|
<PackageId>libsodium</PackageId>
|
||||||
<Version>1.0.20.0</Version>
|
<Version>1.0.21.0</Version>
|
||||||
<Authors>Frank Denis</Authors>
|
<Authors>Frank Denis</Authors>
|
||||||
<Description>Internal implementation package not meant for direct consumption. Please do not reference directly.</Description>
|
<Description>Internal implementation package not meant for direct consumption. Please do not reference directly.</Description>
|
||||||
<Copyright>© $([System.DateTime]::UtcNow.ToString(yyyy)) Frank Denis</Copyright>
|
<Copyright>© $([System.DateTime]::UtcNow.ToString(yyyy)) Frank Denis</Copyright>
|
||||||
|
Loading…
Reference in New Issue
Block a user