Skip to content

Commit 610d861

Browse files
committed
Bumped dev version to 0.9.9
1 parent efcc6a2 commit 610d861

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

Common/VersionInfo.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#region BSD Licence
2-
/* Copyright (c) 2013, Doxense SARL
2+
/* Copyright (c) 2013-2015, Doxense SAS
33
All rights reserved.
44
55
Redistribution and use in source and binary forms, with or without
@@ -32,10 +32,10 @@ DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
3232

3333
[assembly: AssemblyCompany("Doxense")]
3434
[assembly: AssemblyProduct("FoundationDB.Client")]
35-
[assembly: AssemblyCopyright("Copyright © Doxense SAS 2013-2014")]
35+
[assembly: AssemblyCopyright("Copyright © Doxense SAS 2013-2015")]
3636
[assembly: AssemblyTrademark("")]
3737
[assembly: AssemblyCulture("")]
3838

39-
[assembly: AssemblyVersion("0.9.8.0")] //note: Only change this when doing breaking API changes!
39+
[assembly: AssemblyVersion("0.9.9.0")] //note: Only change this when doing breaking API changes!
4040
[assembly: AssemblyFileVersion("0.9.8.0")] //note: change this to "x.y.revision.build_step" in a build step of your favorite C.I. build server
41-
[assembly: AssemblyInformationalVersion("0.9.8-pre")] //note: this is the version seen by NuGet, add "-alpha"/"-beta"/"-rc1" at the end to create pre-release packages
41+
[assembly: AssemblyInformationalVersion("0.9.9-pre")] //note: this is the version seen by NuGet, add "-alpha"/"-beta"/"-rc1" at the end to create pre-release packages

build/FoundationDB.Client.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
33
<metadata>
44
<id>FoundationDB.Client</id>
5-
<version>0.9.8-pre</version>
5+
<version>0.9.9-pre</version>
66
<title>FoundationDB Client</title>
77
<authors>Doxense</authors>
88
<owners>Doxense</owners>
@@ -12,7 +12,7 @@
1212
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1313
<description>.NET Binding for FoundationDB</description>
1414
<releaseNotes>This is a pre-release of the .NET Binding, the public API is still subject to changes.</releaseNotes>
15-
<copyright>Copyright 2013-2014 Doxense SAS</copyright>
15+
<copyright>Copyright 2013-2015 Doxense SAS</copyright>
1616
<language>en-US</language>
1717
<tags>foundationdb nosql</tags>
1818
</metadata>

build/FoundationDB.Layers.Common.nuspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
33
<metadata>
44
<id>FoundationDB.Layers.Common</id>
5-
<version>0.9.8-pre</version>
5+
<version>0.9.9-pre</version>
66
<title>FoundationDB Common Layers</title>
77
<authors>Doxense</authors>
88
<owners>Doxense</owners>
@@ -12,11 +12,11 @@
1212
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1313
<description>Common Layers for the FoundationDB .NET Binding</description>
1414
<releaseNotes>This is a pre-release of the .NET Binding, the public API is still subject to changes.</releaseNotes>
15-
<copyright>Copyright 2013-2014 Doxense SAS</copyright>
15+
<copyright>Copyright 2013-2015 Doxense SAS</copyright>
1616
<language>en-US</language>
1717
<tags>foundationdb nosql layers</tags>
1818
<dependencies>
19-
<dependency id="FoundationDB.Client" version="0.9.8-pre" />
19+
<dependency id="FoundationDB.Client" version="0.9.9-pre" />
2020
</dependencies>
2121
</metadata>
2222
<files>

build/build.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ open Fake
66
RestorePackages()
77

88
// Properties
9-
let version = "0.9.8-pre" //TODO: find a way to extract this from somewhere convenient
9+
let version = "0.9.9-pre" //TODO: find a way to extract this from somewhere convenient
1010
let buildDir = "./build/output/"
1111
let nugetPath = ".nuget/nuget.exe"
1212
let nugetOutDir = buildDir + "_packages/"

0 commit comments

Comments
 (0)