Skip to content

Commit

Permalink
Version 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Mauricio Diaz Orlich committed Aug 20, 2014
1 parent 3227038 commit 02eed6a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Madd0.AzureStorageDriver/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("0d14276c-9f70-46bf-903e-877750970f43")]

[assembly: AssemblyVersion("1.0.1.0")]
[assembly: AssemblyFileVersion("1.0.1.0")]
[assembly: AssemblyVersion("1.1.0.0")]
[assembly: AssemblyFileVersion("1.1.0.0")]
[assembly: NeutralResourcesLanguageAttribute("")]
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ execution of queries against [Azure Table Storage](http://msdn.microsoft.com/en-

It allows you to add storage accounts as connections in LINQPad.
It will list all tables for each account and all columns in each table.
Since Azure tables can have mixed schemas, the columns shown correspond
to all schemas combined. For the same reason, any value types are made
Since Azure tables can have mixed schemas, a property was added in version 1.1.0
allowing users to specify the number of rows that should be scanned to determine
the schema of each table. For the same reason, any value types are made
`Nullable<>` since it cannot be guaranteed that they will have a value
for a given row.

Expand All @@ -17,6 +18,12 @@ Issues and feature requests can be made in the projects

## Versions ##

### v1.1.0 - 2014-08-20 ###

* Uses latest version of [Azure Storage Client Library](https://github.com/Azure/azure-storage-net/) (4.2.0)
* Provides a solution to issue [#1][2] by adding a configuration parameter that allows users to specify
the number of rows to be scanned to determine the schema of a table (100 by default).

### v1.0.1 - 2013-08-15 ###

Corrects issue [#4][1].
Expand All @@ -25,4 +32,5 @@ Corrects issue [#4][1].

This is the first public release. Needs real-world testing.

[1]: https://github.com/madd0/AzureStorageDriver/issues/4
[1]: https://github.com/madd0/AzureStorageDriver/issues/4
[2]: https://github.com/madd0/AzureStorageDriver/issues/1

0 comments on commit 02eed6a

Please sign in to comment.