Skip to content

Commit

Permalink
Bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
c-w committed Mar 5, 2020
1 parent 20619e0 commit 04e0917
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 9 deletions.
4 changes: 4 additions & 0 deletions blob/BreakingChanges.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 4 additions & 0 deletions blob/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
4 changes: 2 additions & 2 deletions blob/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion blob/azure-storage-blob.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
4 changes: 2 additions & 2 deletions blob/lib/azure/storage/blob/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions common/BreakingChanges.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
5 changes: 5 additions & 0 deletions common/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions common/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions common/lib/azure/storage/common/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 04e0917

Please sign in to comment.