From e5059568b6b971f6981b454fd71cf211429d418e Mon Sep 17 00:00:00 2001
From: Tank Tang <kat@microsoft.com>
Date: Mon, 9 Mar 2020 12:06:26 +0800
Subject: [PATCH] Version change for 2.0.0 release.

---
 blob/lib/azure/storage/blob/default.rb   | 2 +-
 common/ChangeLog.md                      | 6 ++++++
 file/BreakingChanges.md                  | 4 ++++
 file/ChangeLog.md                        | 3 +++
 file/lib/azure/storage/file/version.rb   | 4 ++--
 queue/BreakingChanges.md                 | 4 ++++
 queue/ChangeLog.md                       | 3 +++
 queue/lib/azure/storage/queue/version.rb | 4 ++--
 table/BreakingChanges.md                 | 4 ++++
 table/ChangeLog.md                       | 3 +++
 table/lib/azure/storage/table/version.rb | 4 ++--
 11 files changed, 34 insertions(+), 7 deletions(-)

diff --git a/blob/lib/azure/storage/blob/default.rb b/blob/lib/azure/storage/blob/default.rb
index 726f4ee..3533874 100644
--- a/blob/lib/azure/storage/blob/default.rb
+++ b/blob/lib/azure/storage/blob/default.rb
@@ -29,7 +29,7 @@ require "rbconfig"
 module Azure::Storage::Blob
   module Default
     # Default REST service (STG) version number
-    STG_VERSION = "2017-11-09"
+    STG_VERSION = "2018-11-09"
 
     # The number of default concurrent requests for parallel operation.
     DEFAULT_PARALLEL_OPERATION_THREAD_COUNT = 1
diff --git a/common/ChangeLog.md b/common/ChangeLog.md
index d91cb09..f847bfa 100644
--- a/common/ChangeLog.md
+++ b/common/ChangeLog.md
@@ -2,6 +2,12 @@
 * 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.
+* This module now contains azure-core which was originally in azure-ruby-asm-core.
+* The following dependency version was bumped up to the specified version for security update:
+    Nokogiri 1.10.4
+    Faraday  1.0.0
+    Rake     13.0
+* Now reuses the HTTP Client on host level.
 
 2018.11 - version 1.1.0
 * Added the support for sending a request with a bearer token.
diff --git a/file/BreakingChanges.md b/file/BreakingChanges.md
index 8f62e32..9d4ba54 100644
--- a/file/BreakingChanges.md
+++ b/file/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 File Service.
diff --git a/file/ChangeLog.md b/file/ChangeLog.md
index f22dbb3..e05e01a 100644
--- a/file/ChangeLog.md
+++ b/file/ChangeLog.md
@@ -1,3 +1,6 @@
+2020.3 - version 2.0.0
+* This module now supports Ruby versions to 2.3 through 2.7
+
 2018.1 - version 1.0.1
 * Resolved an issue where user cannot use Gem package using `gem install`.
 
diff --git a/file/lib/azure/storage/file/version.rb b/file/lib/azure/storage/file/version.rb
index 2073fe6..44ff4a4 100644
--- a/file/lib/azure/storage/file/version.rb
+++ b/file/lib/azure/storage/file/version.rb
@@ -29,9 +29,9 @@ module Azure
     module File
       class Version
         # Fields represent the parts defined in http://semver.org/
-        MAJOR = 1 unless defined? MAJOR
+        MAJOR = 2 unless defined? MAJOR
         MINOR = 0 unless defined? MINOR
-        UPDATE = 1 unless defined? UPDATE
+        UPDATE = 0 unless defined? UPDATE
 
         class << self
           # @return [String]
diff --git a/queue/BreakingChanges.md b/queue/BreakingChanges.md
index b0783a5..e7b3e7e 100644
--- a/queue/BreakingChanges.md
+++ b/queue/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 Queue Service.
diff --git a/queue/ChangeLog.md b/queue/ChangeLog.md
index 85139f2..2281156 100644
--- a/queue/ChangeLog.md
+++ b/queue/ChangeLog.md
@@ -1,3 +1,6 @@
+2020.3 - version 2.0.0
+* This module now supports Ruby versions to 2.3 through 2.7
+
 2018.11 - version 1.1.0
 * Added the support for sending a request with a bearer token.
 
diff --git a/queue/lib/azure/storage/queue/version.rb b/queue/lib/azure/storage/queue/version.rb
index 4cb491e..832f74b 100644
--- a/queue/lib/azure/storage/queue/version.rb
+++ b/queue/lib/azure/storage/queue/version.rb
@@ -29,8 +29,8 @@ module Azure
     module Queue
       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/table/BreakingChanges.md b/table/BreakingChanges.md
index 850f41f..da9b432 100644
--- a/table/BreakingChanges.md
+++ b/table/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 Table Service.
diff --git a/table/ChangeLog.md b/table/ChangeLog.md
index e08005d..46fc5dd 100644
--- a/table/ChangeLog.md
+++ b/table/ChangeLog.md
@@ -1,3 +1,6 @@
+2020.3 - version 2.0.0
+* This module now supports Ruby versions to 2.3 through 2.7
+
 2018.1 - version 1.0.1
 * Resolved an issue where user cannot use Gem package using `gem install`.
 
diff --git a/table/lib/azure/storage/table/version.rb b/table/lib/azure/storage/table/version.rb
index 49b37c6..42e11b0 100644
--- a/table/lib/azure/storage/table/version.rb
+++ b/table/lib/azure/storage/table/version.rb
@@ -29,9 +29,9 @@ module Azure
     module Table
       class Version
         # Fields represent the parts defined in http://semver.org/
-        MAJOR = 1 unless defined? MAJOR
+        MAJOR = 2 unless defined? MAJOR
         MINOR = 0 unless defined? MINOR
-        UPDATE = 1 unless defined? UPDATE
+        UPDATE = 0 unless defined? UPDATE
 
         class << self
           # @return [String]
-- 
GitLab