Skip to content
Snippets Groups Projects
Commit e5059568 authored by Tank Tang's avatar Tank Tang Committed by Vincent Jiang (LEI)
Browse files

Version change for 2.0.0 release.

parent 252e3f06
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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.
......
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.
......
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`.
......
......@@ -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]
......
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.
......
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.
......
......@@ -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
......
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.
......
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`.
......
......@@ -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]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment