Skip to content

Commit 3d31260

Browse files
authored
Merge pull request #31 from proteanic/correct_version
Corrected version setup, and updated it to 2.3.0
2 parents 67b2a00 + 520e7fa commit 3d31260

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

bindings/cs/Protean-cs/Protean.Net/Protean.Net.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Copyright>Copyright \u00A9 Johan Ditmar, Karel Hruda, Paul O'Neill and Luke Stedman</Copyright>
55
<AssemblyTitle>Protean.Net</AssemblyTitle>
6-
<VersionPrefix>2.1.0</VersionPrefix>
6+
<VersionPrefix>2.3.0</VersionPrefix>
77
<Authors>Johan Ditmar;Karel Hruda;Paul O'Neill</Authors>
88
<TargetFrameworks>netstandard1.3;net462;netstandard2.0</TargetFrameworks>
99
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>

projects/vc1x/vc1x-version.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup Label="UserMacros">
4-
<VersionString>2_22</VersionString>
4+
<VersionString>2_03</VersionString>
55
</PropertyGroup>
66
<PropertyGroup>
77
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>

protean/version.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
#define PROTEAN_VERSION_HPP
88

99
#define PROTEAN_MAJOR_VERSION 2
10-
#define PROTEAN_MINOR_VERSION 22
10+
#define PROTEAN_MINOR_VERSION 3
1111
#define PROTEAN_PATCH_VERSION 0
1212

13-
#define PROTEAN_VERSION ((PROTEAN_MAJOR_VERSION * 100000) + (PROTEAN_MINOR_VERSION * 1000) + PROTEAN_PATCH_VERSION)
13+
#define PROTEAN_VERSION ((PROTEAN_MAJOR_VERSION * 100000) + (PROTEAN_MINOR_VERSION * 100) + PROTEAN_PATCH_VERSION)
1414

1515
// PROTEAN_LIB_VERSION must be defined to be the same as PROTEAN_VERSION
1616
// but as a *string* in the form "x_y[_z]" where x is the major version
1717
// number, y is the minor version number, and z is the patch level if not 0.
1818

19-
#define PROTEAN_LIB_VERSION "2_22"
19+
#define PROTEAN_LIB_VERSION "2_03"
2020

2121
#endif // PROTEAN_VERSION_HPP

0 commit comments

Comments
 (0)