diff --git a/blob/BreakingChanges.md b/blob/BreakingChanges.md index f14368ed..cec49b97 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 abb8f4f9..a6d197e2 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 44fc42b8..1e8f8791 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 06a6f25b..0caa8427 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 090399fb..25932e12 100644 --- a/blob/lib/azure/storage/blob/version.rb +++ b/blob/lib/azure/storage/blob/version.rb @@ -29,8 +29,8 @@ module Storage 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 98b81484..b3d0f277 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 5228ca14..d91cb09e 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 f8e0fa62..b87eefbf 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 7a00a8a3..1e8723db 100644 --- a/common/lib/azure/storage/common/version.rb +++ b/common/lib/azure/storage/common/version.rb @@ -29,8 +29,8 @@ module Storage 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