Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions sdk/ruby/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Chain Ruby SDK

## 1.0.3 (March 2, 2017)

* Relax minimum Ruby version requirement from 2.1 to 2.0. While the Ruby SDK is now compatible with Ruby 2.0, we strongly recommend using Ruby 2.1 or greater, since Ruby 2.0 has reached end-of-life and is no longer receiving critical security updates.

## 1.0.2 (February 21, 2017)

* Syntax compatibility update
Expand Down
2 changes: 1 addition & 1 deletion sdk/ruby/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Ruby 2.0 or greater is required. We strongly recommend upgrading to Ruby 2.1 or
For most applications, you can simply add the following to your `Gemfile`:

```
gem 'chain-sdk', '~> 1.0.2', require: 'chain'
gem 'chain-sdk', '~> 1.0.3', require: 'chain'
```

### In your code
Expand Down
2 changes: 1 addition & 1 deletion sdk/ruby/lib/chain/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Chain
VERSION = '1.0.2'
VERSION = '1.0.3'
end