Skip to content

Commit c5e43f4

Browse files
committed
Update dotnet example version
1 parent aa67295 commit c5e43f4

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

packaging/dotnet-core/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ Version numbers for the packages for .NET Core consist of three components:
3131
It may be necessary to release more than one package for a libsodium version,
3232
e.g., when adding support for a new platform or if a release contains a broken
3333
binary. In this case, a package revision number is added as a fourth part to
34-
the libsodium version, starting at `1`. For example, `1.0.14` is the initial
35-
release of the package for libsodium 1.0.14 and `1.0.14.5` is the fifth
34+
the libsodium version, starting at `1`. For example, `1.0.15` is the initial
35+
release of the package for libsodium 1.0.15 and `1.0.15.5` is the fifth
3636
revision (sixth release) of that package.
3737
* *pre-release label*
3838
If a package is a pre-release, a label is appended to the version number in
3939
`-preview-##` format where `##` is the number of the pre-release, starting at
40-
`01`. For example, `1.0.14-preview-01` is the first pre-release of the package
41-
for libsodium 1.0.14 and `1.0.14.5-preview-02` the second pre-release of the
42-
fifth revision of the package for libsodium 1.0.14.
40+
`01`. For example, `1.0.15-preview-01` is the first pre-release of the package
41+
for libsodium 1.0.15 and `1.0.15.5-preview-02` the second pre-release of the
42+
fifth revision of the package for libsodium 1.0.15.
4343

4444

4545
**Making a release**

packaging/dotnet-core/prepare.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -170,13 +170,13 @@ def main(args):
170170
print(' python3 prepare.py <version>')
171171
print()
172172
print('Examples:')
173-
print(' python3 prepare.py 1.0.14-preview-01')
174-
print(' python3 prepare.py 1.0.14-preview-02')
175-
print(' python3 prepare.py 1.0.14-preview-03')
176-
print(' python3 prepare.py 1.0.14')
177-
print(' python3 prepare.py 1.0.14.1-preview-01')
178-
print(' python3 prepare.py 1.0.14.1')
179-
print(' python3 prepare.py 1.0.14.2')
173+
print(' python3 prepare.py 1.0.15-preview-01')
174+
print(' python3 prepare.py 1.0.15-preview-02')
175+
print(' python3 prepare.py 1.0.15-preview-03')
176+
print(' python3 prepare.py 1.0.15')
177+
print(' python3 prepare.py 1.0.15.1-preview-01')
178+
print(' python3 prepare.py 1.0.15.1')
179+
print(' python3 prepare.py 1.0.15.2')
180180
return 1
181181

182182
version = Version(m.group(2), m.group(0))

packaging/nuget/package.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!-- These values are populated into the package.gsl templates by package.bat. -->
33
<!-- The target attribute controls path and file name only, id controls package naming. -->
4-
<package id="libsodium_vc120" target="libsodium" version = "1.0.14.0" pathversion="1_0_14_0" platformtoolset="v120" />
4+
<package id="libsodium_vc120" target="libsodium" version = "1.0.15.0" pathversion="1_0_15_0" platformtoolset="v120" />

0 commit comments

Comments
 (0)