From 02eed6aa3f6dc9ee38c39fcc37a699a192bf8712 Mon Sep 17 00:00:00 2001 From: Mauricio Diaz Orlich Date: Thu, 21 Aug 2014 00:01:10 +0200 Subject: [PATCH] Version 1.1 --- .../Properties/AssemblyInfo.cs | 4 ++-- README.md | 14 +++++++++++--- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/Madd0.AzureStorageDriver/Properties/AssemblyInfo.cs b/Madd0.AzureStorageDriver/Properties/AssemblyInfo.cs index 081b6f5..4a2332e 100644 --- a/Madd0.AzureStorageDriver/Properties/AssemblyInfo.cs +++ b/Madd0.AzureStorageDriver/Properties/AssemblyInfo.cs @@ -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("")] diff --git a/README.md b/README.md index 29079a0..c43ba46 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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]. @@ -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 \ No newline at end of file +[1]: https://github.com/madd0/AzureStorageDriver/issues/4 +[2]: https://github.com/madd0/AzureStorageDriver/issues/1 \ No newline at end of file