Skip to content

Commit

Permalink
Update version to 0.7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mfenniak committed Nov 2, 2013
1 parent e3680d7 commit b3e2a44
Show file tree
Hide file tree
Showing 7 changed files with 61 additions and 33 deletions.
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.7.0.0 (2013-11-02)

### Features

Expand Down
38 changes: 26 additions & 12 deletions rethinkdb-net-newtonsoft-test/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,22 +1,36 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// Information about this assembly is defined by the following attributes.
// Change them to the values specific to your project.
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("rethinkdb-net-newtonsoft-test")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("")]
[assembly: AssemblyCopyright("cowboy")]
[assembly: AssemblyProduct("rethinkdb-net-newtonsoft-test")]
[assembly: AssemblyCopyright("Copyright © 2013")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
[assembly: AssemblyVersion("1.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.
//[assembly: AssemblyDelaySign(false)]
//[assembly: AssemblyKeyFile("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("58d874d8-002c-464a-b04d-276498a28f25")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// 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.7.0.0")]
[assembly: AssemblyFileVersion("0.7.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.6.0.0</version>
<version>0.7.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.6.0.0" />
<dependency id="rethinkdb-net" version="0.7.0.0" />
<dependency id="Newtonsoft.Json" version="5.0.8" />
<dependency id="protobuf-net" version="2.0.0.666" />
</dependencies>
Expand Down
40 changes: 27 additions & 13 deletions rethinkdb-net-newtonsoft/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,22 +1,36 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// Information about this assembly is defined by the following attributes.
// Change them to the values specific to your project.
[assembly: AssemblyTitle("rethinkdb-net-newtonsoft")]
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("RethinkDb.Newtonsoft")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("")]
[assembly: AssemblyCopyright("cowboy")]
[assembly: AssemblyProduct("RethinkDb.Newtonsoft")]
[assembly: AssemblyCopyright("Copyright © 2013")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
[assembly: AssemblyVersion("1.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.
//[assembly: AssemblyDelaySign(false)]
//[assembly: AssemblyKeyFile("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("45266f00-0e2e-463e-8497-18d115afe669")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// 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.7.0.0")]
[assembly: AssemblyFileVersion("0.7.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.6.0.0")]
[assembly: AssemblyFileVersion("0.6.0.0")]
[assembly: AssemblyVersion("0.7.0.0")]
[assembly: AssemblyFileVersion("0.7.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.6.0.0</version>
<version>0.7.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.6.0.0")]
[assembly: AssemblyFileVersion("0.6.0.0")]
[assembly: AssemblyVersion("0.7.0.0")]
[assembly: AssemblyFileVersion("0.7.0.0")]

[assembly: InternalsVisibleTo("rethinkdb-net-test")]

0 comments on commit b3e2a44

Please sign in to comment.