From 252e3f06a5cf2e2583302bfefa95d8b25818a44f Mon Sep 17 00:00:00 2001
From: Clemens Wolff <clewolff@microsoft.com>
Date: Thu, 5 Mar 2020 11:42:01 -0500
Subject: [PATCH] Bump versions

---
 blob/BreakingChanges.md                    | 4 ++++
 blob/ChangeLog.md                          | 4 ++++
 blob/README.md                             | 4 ++--
 blob/azure-storage-blob.gemspec            | 2 +-
 blob/lib/azure/storage/blob/version.rb     | 4 ++--
 common/BreakingChanges.md                  | 4 ++++
 common/ChangeLog.md                        | 5 +++++
 common/README.md                           | 4 ++--
 common/lib/azure/storage/common/version.rb | 4 ++--
 9 files changed, 26 insertions(+), 9 deletions(-)

diff --git a/blob/BreakingChanges.md b/blob/BreakingChanges.md
index f14368e..cec49b9 100644
--- a/blob/BreakingChanges.md
+++ b/blob/BreakingChanges.md
@@ -1,3 +1,7 @@
+Tracking Breaking Changes in 2.0.0
+
+* This module now supports Ruby versions to 2.3 through 2.7
+
 Tracking Breaking Changes in 1.0.0
 
 * This module now only consists of functionalities to access Azure Storage Blob Service.
diff --git a/blob/ChangeLog.md b/blob/ChangeLog.md
index abb8f4f..a6d197e 100644
--- a/blob/ChangeLog.md
+++ b/blob/ChangeLog.md
@@ -1,3 +1,7 @@
+2020.3 - version 2.0.0
+* This module now supports Ruby versions to 2.3 through 2.7
+* Add support for generating user delegation shared access signatures.
+
 2018.11 - version 1.1.0
 * Added the support for sending a request with a bearer token.
 
diff --git a/blob/README.md b/blob/README.md
index 44fc42b..1e8f879 100644
--- a/blob/README.md
+++ b/blob/README.md
@@ -9,12 +9,12 @@ This project provides a Ruby package that makes it easy to access and manage Mic
 
 # Supported Ruby Versions
 
-* Ruby 1.9.3 to 2.5
+* Ruby 2.3 to 2.7
 
 Note: 
 
 * x64 Ruby for Windows is known to have some compatibility issues.
-* azure-storage-blob depends on gem nokogiri. For Ruby version lower than 2.2, please install the compatible nokogiri before trying to install azure-storage-blob.
+* azure-storage-blob depends on gem nokogiri.
 
 # Getting Started
 
diff --git a/blob/azure-storage-blob.gemspec b/blob/azure-storage-blob.gemspec
index 06a6f25..0caa842 100644
--- a/blob/azure-storage-blob.gemspec
+++ b/blob/azure-storage-blob.gemspec
@@ -40,7 +40,7 @@ Gem::Specification.new do |s|
 
   s.required_ruby_version = ">= 2.3.0"
 
-  s.add_runtime_dependency("azure-storage-common",    "~> 1.0")
+  s.add_runtime_dependency("azure-storage-common",    "~> 2.0")
   s.add_runtime_dependency("nokogiri",                "~> 1.10.4")
 
   s.add_development_dependency("dotenv",              "~> 2.0")
diff --git a/blob/lib/azure/storage/blob/version.rb b/blob/lib/azure/storage/blob/version.rb
index 090399f..25932e1 100644
--- a/blob/lib/azure/storage/blob/version.rb
+++ b/blob/lib/azure/storage/blob/version.rb
@@ -29,8 +29,8 @@ module Azure
     module Blob
       class Version
         # Fields represent the parts defined in http://semver.org/
-        MAJOR = 1 unless defined? MAJOR
-        MINOR = 1 unless defined? MINOR
+        MAJOR = 2 unless defined? MAJOR
+        MINOR = 0 unless defined? MINOR
         UPDATE = 0 unless defined? UPDATE
 
         class << self
diff --git a/common/BreakingChanges.md b/common/BreakingChanges.md
index 98b8148..b3d0f27 100644
--- a/common/BreakingChanges.md
+++ b/common/BreakingChanges.md
@@ -1,3 +1,7 @@
+Tracking Breaking Changes in 2.0.0
+
+* This module now supports Ruby versions to 2.3 through 2.7
+
 Tracking Breaking Changes in 1.0.0
 
 * This module now consists of functionalities to support service client library modules.
diff --git a/common/ChangeLog.md b/common/ChangeLog.md
index 5228ca1..d91cb09 100644
--- a/common/ChangeLog.md
+++ b/common/ChangeLog.md
@@ -1,3 +1,8 @@
+2020.3 - version 2.0.0
+* This module now supports Ruby versions to 2.3 through 2.7
+* Add support for generating user delegation shared access signatures.
+* Update the storage API version used to generate shared access signatures to 2018-11-09.
+
 2018.11 - version 1.1.0
 * Added the support for sending a request with a bearer token.
 * Added the configuration for SSL versions.
diff --git a/common/README.md b/common/README.md
index f8e0fa6..b87eefb 100644
--- a/common/README.md
+++ b/common/README.md
@@ -8,12 +8,12 @@ This project provides a Ruby package that supports service client libraries.
 
 # Supported Ruby Versions
 
-* Ruby 1.9.3 to 2.5
+* Ruby 2.3 to 2.7
 
 Note: 
 
 * x64 Ruby for Windows is known to have some compatibility issues.
-* azure-storage-common depends on gem nokogiri. For Ruby version lower than 2.2, please install the compatible nokogiri before trying to install azure-storage.
+* azure-storage-common depends on gem nokogiri.
 
 # Getting Started
 
diff --git a/common/lib/azure/storage/common/version.rb b/common/lib/azure/storage/common/version.rb
index 7a00a8a..1e8723d 100644
--- a/common/lib/azure/storage/common/version.rb
+++ b/common/lib/azure/storage/common/version.rb
@@ -29,8 +29,8 @@ module Azure
     module Common
       class Version
         # Fields represent the parts defined in http://semver.org/
-        MAJOR = 1 unless defined? MAJOR
-        MINOR = 1 unless defined? MINOR
+        MAJOR = 2 unless defined? MAJOR
+        MINOR = 0 unless defined? MINOR
         UPDATE = 0 unless defined? UPDATE
 
         class << self
-- 
GitLab