Skip to content
This repository has been archived by the owner on Sep 3, 2022. It is now read-only.

Commit

Permalink
preparation for release 0.20.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
reuzel committed Sep 6, 2013
1 parent 0e6096e commit 101d26e
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Version 0.15.0 - ADO.NET implementation
## Version 0.20.0 - ADO.NET implementation
* CqlSharp now implements the ADO.NET interfaces (this is a breaking change!), using the System.Data.Common classes
* Introduced QueryResult property on CqlCommand to expose Cassandra result information for non-Queries
* Parameters for prepared queries will be automatically generated when no paramaters are set beforehand
Expand Down
2 changes: 0 additions & 2 deletions CqlSharp/CqlSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,9 @@
<Reference Include="System" />
<Reference Include="System.ComponentModel.Composition" />
<Reference Include="System.ComponentModel.Composition.Registration" />
<Reference Include="System.ComponentModel.DataAnnotations" />
<Reference Include="System.Configuration" />
<Reference Include="System.Core" />
<Reference Include="System.Data" />
<Reference Include="System.Design" />
<Reference Include="System.Numerics" />
<Reference Include="System.Reflection.Context" />
<Reference Include="System.Xml" />
Expand Down
10 changes: 7 additions & 3 deletions CqlSharp/CqlSharp.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,19 @@
<metadata>
<id>$id$</id>
<version>$version$</version>
<title>CQLSharp - A Cassandra Binary Protocol Client for .NET</title>
<title>CQLSharp - An ADO.NET Data Provider for Cassandra</title>
<authors>Joost Reuzel</authors>
<owners>Joost Reuzel</owners>
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl>
<projectUrl>https://github.com/reuzel/CqlSharp/wiki</projectUrl>
<iconUrl>https://raw.github.com/reuzel/CqlSharp/master/logo.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>CqlSharp is a high performance, asynchronous Cassandra CQL binary protocol driver offering an ADO.NET like interface. See https://github.com/reuzel/CqlSharp/wiki/Features for an extensive feature list.</description>
<description>
CqlSharp is a high performance, asynchronous Cassandra CQL binary protocol client implementing the ADO.NET data provider interfaces.

See https://github.com/reuzel/CqlSharp/wiki/Features for an extensive feature list.
</description>
<copyright>Copyright 2013 Joost Reuzel</copyright>
<tags>Cassandra CQL ADO.NET client database driver nosql net45 TPL async high-performance</tags>
<tags>Cassandra CQL ADO.NET client database provider driver nosql net45 TPL async high-performance</tags>
</metadata>
</package>
6 changes: 3 additions & 3 deletions CqlSharp/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
// associated with an assembly.

[assembly: AssemblyTitle("CqlSharp")]
[assembly: AssemblyDescription("Cassandra Binary Protocol Driver for .NET")]
[assembly: AssemblyDescription("Cassandra Binary Protocol ADO.Net Driver")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Joost Reuzel")]
[assembly: AssemblyProduct("CqlSharp")]
Expand Down Expand Up @@ -51,8 +51,8 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]

[assembly: AssemblyVersion("0.15.0.0")]
[assembly: AssemblyFileVersion("0.15.0.0")]
[assembly: AssemblyVersion("0.20.0.0")]
[assembly: AssemblyFileVersion("0.20.0.0")]

#if DEBUG
[assembly: InternalsVisibleTo("CqlSharp.Fakes")]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
CqlSharp
========

CqlSharp is a high performance, asynchronous ADO.NET driver for [Cassandra](http://cassandra.apache.org/) implementing the CQL binary protocol.
CqlSharp is a high performance, asynchronous ADO.NET data provider for [Cassandra](http://cassandra.apache.org/) implementing the CQL binary protocol.

Please see the [Wiki](https://github.com/reuzel/CqlSharp/wiki) for more extensive [documentation](https://github.com/reuzel/CqlSharp/wiki).

Expand Down

0 comments on commit 101d26e

Please sign in to comment.