Skip to content

Commit

Permalink
Update version to 0.11.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mfenniak committed Apr 18, 2015
1 parent 3dfde47 commit 124f592
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions Examples/RethinkDb.Examples.ConsoleApp/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
// and "{Major}.{Minor}.{Build}.*" will update just the revision.

[assembly: AssemblyVersion("0.10.0.0")]
[assembly: AssemblyFileVersion("0.10.0.0")]
[assembly: AssemblyVersion("0.11.0.0")]
[assembly: AssemblyFileVersion("0.11.0.0")]

// The following attributes are used to specify the signing key for the assembly,
// if desired. See the Mono documentation for more information about signing.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
// and "{Major}.{Minor}.{Build}.*" will update just the revision.

[assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.11.0.0")]

// The following attributes are used to specify the signing key for the assembly,
// if desired. See the Mono documentation for more information about signing.
Expand Down
2 changes: 1 addition & 1 deletion RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# rethinkdb-net Release Notes

## Next Release
## 0.11.0.0 (2015-04-18)

### Features

Expand Down
8 changes: 4 additions & 4 deletions make-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,30 +16,30 @@ echo "Processing release $NEW_VERSION"
find . -type f -name '*.cs' -exec dos2unix -m '{}' \;

for f in **/AssemblyInfo.cs; do
sed --in-place -e "s/\"[0-9]\.[0-9]\.[0-9]\.[0-9]\"/\"$NEW_VERSION\"/" $f
sed --in-place -e "s/\"[0-9]\+\.[0-9]\+\.[0-9]\+\.[0-9]\+\"/\"$NEW_VERSION\"/" $f
if ! grep -q "$NEW_VERSION" "$f"
then
echo "sed failed $f"
exit
fi
done

sed --in-place -e "s#<version>[0-9]\.[0-9]\.[0-9]\.[0-9]</version>#<version>$NEW_VERSION</version>#" rethinkdb-net.nuspec
sed --in-place -e "s#<version>[0-9]\+\.[0-9]\+\.[0-9]\+\.[0-9]\+</version>#<version>$NEW_VERSION</version>#" rethinkdb-net.nuspec
if ! grep -q "<version>$NEW_VERSION</version>" rethinkdb-net.nuspec
then
echo "sed failed"
exit
fi


sed --in-place -e "s#<version>[0-9]\.[0-9]\.[0-9]\.[0-9]</version>#<version>$NEW_VERSION</version>#" rethinkdb-net-newtonsoft.nuspec
sed --in-place -e "s#<version>[0-9]\+\.[0-9]\+\.[0-9]\+\.[0-9]\+</version>#<version>$NEW_VERSION</version>#" rethinkdb-net-newtonsoft.nuspec
if ! grep -q "<version>$NEW_VERSION</version>" rethinkdb-net-newtonsoft.nuspec
then
echo "sed failed"
exit
fi

sed --in-place -e "s#<dependency id=\"rethinkdb-net\" version=\"[0-9]\.[0-9]\.[0-9]\.[0-9]\" />#<dependency id=\"rethinkdb-net\" version=\"$NEW_VERSION\" />#" rethinkdb-net-newtonsoft.nuspec
sed --in-place -e "s#<dependency id=\"rethinkdb-net\" version=\"[0-9]\+\.[0-9]\+\.[0-9]\+\.[0-9]\+\" />#<dependency id=\"rethinkdb-net\" version=\"$NEW_VERSION\" />#" rethinkdb-net-newtonsoft.nuspec
if ! grep -q "<dependency id=\"rethinkdb-net\" version=\"$NEW_VERSION\" />" rethinkdb-net-newtonsoft.nuspec
then
echo "sed failed"
Expand Down
4 changes: 2 additions & 2 deletions rethinkdb-net-newtonsoft-test/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]

[assembly: AssemblyVersion("0.10.0.0")]
[assembly: AssemblyFileVersion("0.10.0.0")]
[assembly: AssemblyVersion("0.11.0.0")]
[assembly: AssemblyFileVersion("0.11.0.0")]
4 changes: 2 additions & 2 deletions rethinkdb-net-newtonsoft.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>rethinkdb-net-newtonsoft</id>
<version>0.10.0.0</version>
<version>0.11.0.0</version>
<authors>Brian Chavez</authors>
<owners>Mathieu Fenniak</owners>
<projectUrl>https://github.com/mfenniak/rethinkdb-net</projectUrl>
<licenseUrl>https://raw.github.com/mfenniak/rethinkdb-net/master/LICENSE.txt</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Alternative object serializer for rethinkdb-net using Newtonsoft.Json</description>
<dependencies>
<dependency id="rethinkdb-net" version="0.10.0.0" />
<dependency id="rethinkdb-net" version="0.11.0.0" />
<dependency id="Newtonsoft.Json" version="5.0.8" />
<dependency id="protobuf-net" version="2.0.0.666" />
</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions rethinkdb-net-newtonsoft/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]

[assembly: AssemblyVersion("0.10.0.0")]
[assembly: AssemblyFileVersion("0.10.0.0")]
[assembly: AssemblyVersion("0.11.0.0")]
[assembly: AssemblyFileVersion("0.11.0.0")]
4 changes: 2 additions & 2 deletions rethinkdb-net-test/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.10.0.0")]
[assembly: AssemblyFileVersion("0.10.0.0")]
[assembly: AssemblyVersion("0.11.0.0")]
[assembly: AssemblyFileVersion("0.11.0.0")]
2 changes: 1 addition & 1 deletion rethinkdb-net.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>rethinkdb-net</id>
<version>0.10.0.0</version>
<version>0.11.0.0</version>
<authors>Mathieu Fenniak, Karl Grzeszczak, Dale Ragan, John Weber</authors>
<owners>Mathieu Fenniak</owners>
<projectUrl>https://github.com/mfenniak/rethinkdb-net</projectUrl>
Expand Down
4 changes: 2 additions & 2 deletions rethinkdb-net/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.10.0.0")]
[assembly: AssemblyFileVersion("0.10.0.0")]
[assembly: AssemblyVersion("0.11.0.0")]
[assembly: AssemblyFileVersion("0.11.0.0")]

[assembly: InternalsVisibleTo("rethinkdb-net-test")]
2 changes: 1 addition & 1 deletion rethinkdb-net/rethinkdb_spec.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
Expand Down

0 comments on commit 124f592

Please sign in to comment.