Bump package (not library) version

This commit is contained in:
Frank Denis 2017-03-28 12:57:19 +02:00
parent 1e40599839
commit aa7ded10e7
6 changed files with 11 additions and 11 deletions

View File

@ -31,7 +31,7 @@ addons:
coverity_scan:
project:
name: jedisct1/libsodium
version: 1.0.12
version: 1.0.13
description: libsodium
notification_email: coverityscan@pureftpd.org
build_command_prepend: ./autogen.sh ; ./configure

View File

@ -4,7 +4,7 @@
#include "export.h"
#define SODIUM_VERSION_STRING "1.0.12"
#define SODIUM_VERSION_STRING "1.0.13"
#define SODIUM_LIBRARY_VERSION_MAJOR 9
#define SODIUM_LIBRARY_VERSION_MINOR 4

View File

@ -1,5 +1,5 @@
AC_PREREQ([2.65])
AC_INIT([libsodium],[1.0.12],
AC_INIT([libsodium],[1.0.13],
[https://github.com/jedisct1/libsodium/issues],
[libsodium],
[https://github.com/jedisct1/libsodium])

View File

@ -1,4 +1,4 @@
cscript msvc-scripts/rep.vbs //Nologo s/@VERSION@/1.0.12/ < src\libsodium\include\sodium\version.h.in > tmp
cscript msvc-scripts/rep.vbs //Nologo s/@VERSION@/1.0.13/ < 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@/4/ < tmp2 > tmp3
cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_MINIMAL_DEF@// < tmp3 > src\libsodium\include\sodium\version.h

View File

@ -19,8 +19,8 @@ The metadata for the NuGet package is located in `libsodium.props`.
**Making a pre-release**
1. Run `python3 prepare.py 1.0.12-preview-01` to generate the `Makefile`.
`1.0.12` is the libsodium version number; `01` is the pre-release
1. Run `python3 prepare.py 1.0.13-preview-01` to generate the `Makefile`.
`1.0.13` is the libsodium version number; `01` is the pre-release
number and needs to be incremented for each pre-release.
2. Take a look at the generated `Makefile`. It uses `sudo` a few times.
3. Run `make` to download and build the binaries and create the NuGet
@ -36,6 +36,6 @@ The metadata for the NuGet package is located in `libsodium.props`.
**Making a release**
1. Run `python3 prepare.py 1.0.12` to generate the `Makefile`.
1. Run `python3 prepare.py 1.0.13` to generate the `Makefile`.
The remaining steps are the same.

View File

@ -175,10 +175,10 @@ def main(args):
print(' python3 prepare.py <version>[-preview-##]')
print()
print('Examples:')
print(' python3 prepare.py 1.0.12-preview-01')
print(' python3 prepare.py 1.0.12-preview-02')
print(' python3 prepare.py 1.0.12-preview-03')
print(' python3 prepare.py 1.0.12')
print(' python3 prepare.py 1.0.13-preview-01')
print(' python3 prepare.py 1.0.13-preview-02')
print(' python3 prepare.py 1.0.13-preview-03')
print(' python3 prepare.py 1.0.13')
return 1
version = Version(m.group(1), m.group(2))