Bump to 1.0.17
Not released yet. This is just to encourage people to test the current code.
This commit is contained in:
parent
b3dc89368e
commit
f3ce049a98
@ -25,6 +25,7 @@ especially useful for blinding.
|
|||||||
- `sodium_sub()` has been implemented.
|
- `sodium_sub()` has been implemented.
|
||||||
- Support for WatchOS has been added.
|
- Support for WatchOS has been added.
|
||||||
- getrandom(2) is now used on FreeBSD 12+.
|
- getrandom(2) is now used on FreeBSD 12+.
|
||||||
|
- The `nonnull` attribute has been added to all relevant prototypes.
|
||||||
|
|
||||||
* Version 1.0.16
|
* Version 1.0.16
|
||||||
- Signatures computations and verifications are now way faster on
|
- Signatures computations and verifications are now way faster on
|
||||||
|
@ -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.16.0"
|
#define LIBSODIUM_VERSION_STRING "1.0.17.0"
|
||||||
#define LIBSODIUM_VERSION_BIN 1,0,16,0
|
#define LIBSODIUM_VERSION_BIN 1,0,17,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)
|
||||||
@ -47,7 +47,7 @@ BEGIN
|
|||||||
VALUE "FileDescription", "The Sodium crypto library (libsodium) "
|
VALUE "FileDescription", "The Sodium crypto library (libsodium) "
|
||||||
VALUE "FileVersion", LIBSODIUM_VERSION_STRING
|
VALUE "FileVersion", LIBSODIUM_VERSION_STRING
|
||||||
VALUE "InternalName", "libsodium"
|
VALUE "InternalName", "libsodium"
|
||||||
VALUE "LegalCopyright", "Copyright (c) 2017 The libsodium authors."
|
VALUE "LegalCopyright", "Copyright (c) 2013-2019 The libsodium authors."
|
||||||
VALUE "OriginalFilename", "libsodium.dll"
|
VALUE "OriginalFilename", "libsodium.dll"
|
||||||
VALUE "ProductName", LIBSODIUM_PRODUCT_NAME
|
VALUE "ProductName", LIBSODIUM_PRODUCT_NAME
|
||||||
VALUE "ProductVersion", LIBSODIUM_VERSION_STRING
|
VALUE "ProductVersion", LIBSODIUM_VERSION_STRING
|
||||||
|
@ -4,10 +4,10 @@
|
|||||||
|
|
||||||
#include "export.h"
|
#include "export.h"
|
||||||
|
|
||||||
#define SODIUM_VERSION_STRING "1.0.16"
|
#define SODIUM_VERSION_STRING "1.0.17"
|
||||||
|
|
||||||
#define SODIUM_LIBRARY_VERSION_MAJOR 10
|
#define SODIUM_LIBRARY_VERSION_MAJOR 10
|
||||||
#define SODIUM_LIBRARY_VERSION_MINOR 1
|
#define SODIUM_LIBRARY_VERSION_MINOR 2
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
AC_PREREQ([2.65])
|
AC_PREREQ([2.65])
|
||||||
AC_INIT([libsodium],[1.0.16],
|
AC_INIT([libsodium],[1.0.17],
|
||||||
[https://github.com/jedisct1/libsodium/issues],
|
[https://github.com/jedisct1/libsodium/issues],
|
||||||
[libsodium],
|
[libsodium],
|
||||||
[https://github.com/jedisct1/libsodium])
|
[https://github.com/jedisct1/libsodium])
|
||||||
@ -17,7 +17,7 @@ AC_SUBST(VERSION)
|
|||||||
SODIUM_LIBRARY_VERSION_MAJOR=10
|
SODIUM_LIBRARY_VERSION_MAJOR=10
|
||||||
SODIUM_LIBRARY_VERSION_MINOR=1
|
SODIUM_LIBRARY_VERSION_MINOR=1
|
||||||
DLL_VERSION=8
|
DLL_VERSION=8
|
||||||
SODIUM_LIBRARY_VERSION=24:0:1
|
SODIUM_LIBRARY_VERSION=25:0:2
|
||||||
# | | |
|
# | | |
|
||||||
# +------+ | +---+
|
# +------+ | +---+
|
||||||
# | | |
|
# | | |
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
cscript msvc-scripts/rep.vbs //Nologo s/@VERSION@/1.0.16/ < src\libsodium\include\sodium\version.h.in > tmp
|
cscript msvc-scripts/rep.vbs //Nologo s/@VERSION@/1.0.17/ < 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_MAJOR@/10/ < tmp > tmp2
|
||||||
cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_VERSION_MINOR@/1/ < tmp2 > tmp3
|
cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_VERSION_MINOR@/2/ < 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
|
||||||
del tmp tmp2 tmp3
|
del tmp tmp2 tmp3
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#ifndef common_H
|
#ifndef common_H
|
||||||
#define common_H 1
|
#define common_H 1
|
||||||
|
|
||||||
#if !defined(_MSC_VER) && 1
|
#if !defined(_MSC_VER) && 0
|
||||||
# warning *** This is unstable, untested, development code.
|
# warning *** This is unstable, untested, development code.
|
||||||
# warning It might not compile. It might not work as expected.
|
# warning It might not compile. It might not work as expected.
|
||||||
# warning It might be totally insecure.
|
# warning It might be totally insecure.
|
||||||
|
Loading…
Reference in New Issue
Block a user