Skip to content
Snippets Groups Projects
Commit 252e3f06 authored by Clemens Wolff's avatar Clemens Wolff Committed by Vincent Jiang (LEI)
Browse files

Bump versions

parent a8a01151
Branches
No related tags found
No related merge requests found
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.
......
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.
......
......@@ -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
......
......@@ -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")
......
......@@ -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
......
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.
......
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.
......
......@@ -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
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment