Skip to content

Commit

Permalink
Bump version to 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ciremoussadia committed Jan 6, 2021
1 parent e0dc6bf commit 3179e42
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 21 deletions.
6 changes: 0 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,6 @@ rvm:
- 2.6
- 2.7
- ruby-head
- jruby-19mode
- jruby-head
- rbx-19mode
- rbx-head
matrix:
allow_failures:
- rvm: rbx-19mode
- rvm: rbx-head
- rvm: ruby-head
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.10.0 - 2021/01/06

* Add support for newer ruby version and update dependencies

# 0.9.1 - 2020/12/24

* Fixes a bug where proxy types are not properly resolved when used
Expand Down
1 change: 0 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
ruby "2.7.1"
source 'https://rubygems.org'
gemspec
16 changes: 7 additions & 9 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PATH
remote: .
specs:
finitio (0.9.1)
citrus (>= 2.4, < 4.0)
finitio (0.9.2)
citrus (>= 3.0, < 4.0)

GEM
remote: https://rubygems.org/
Expand All @@ -29,8 +29,8 @@ GEM
json (2.5.1)
multi_json (1.15.0)
multi_test (0.1.2)
path (1.3.3)
rake (10.5.0)
path (2.0.1)
rake (13.0.3)
rspec (3.10.0)
rspec-core (~> 3.10.0)
rspec-expectations (~> 3.10.0)
Expand Down Expand Up @@ -58,18 +58,16 @@ GEM

PLATFORMS
ruby
x86_64-linux

DEPENDENCIES
awesome_print (~> 1.2)
coveralls (~> 0.8)
cucumber (~> 1.3)
finitio!
path (~> 1.3)
rake (~> 10.0)
path (>= 2.0, < 3.0)
rake (~> 13.0)
rspec (~> 3.0)

RUBY VERSION
ruby 2.7.1p83

BUNDLED WITH
2.2.4
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Build Status](https://travis-ci.org/blambeau/finitio-rb.png)](https://travis-ci.org/blambeau/finitio-rb)
[![Build Status](https://travis-ci.org/blambeau/finitio-rb.svg?branch=master)](https://travis-ci.org/blambeau/finitio-rb.svg?branch=master)
[![Dependency Status](https://gemnasium.com/blambeau/finitio-rb.png)](https://gemnasium.com/blambeau/finitio-rb)
[![Code Climate](https://codeclimate.com/github/blambeau/finitio-rb.png)](https://codeclimate.com/github/blambeau/finitio-rb)
[![Coverage Status](https://coveralls.io/repos/blambeau/finitio-rb/badge.png?branch=master)](https://coveralls.io/r/blambeau/finitio-rb)
Expand Down
6 changes: 3 additions & 3 deletions finitio.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ Gem::Specification.new do |s|
s.bindir = "bin"
s.executables = (Dir["bin/*"]).collect{|f| File.basename(f)}

s.add_dependency("citrus", ">= 2.4", "< 4.0")
s.add_dependency("citrus", ">= 3.0", "< 4.0")

s.add_development_dependency("rake", "~> 10.0")
s.add_development_dependency("rake", "~> 13.0")
s.add_development_dependency("rspec", "~> 3.0")
s.add_development_dependency("cucumber", "~> 1.3")
s.add_development_dependency("path", "~> 1.3")
s.add_development_dependency("path", ">= 2.0", "< 3.0")
s.add_development_dependency("awesome_print", "~> 1.2")
s.add_development_dependency("coveralls", "~> 0.8")

Expand Down
2 changes: 1 addition & 1 deletion lib/finitio/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module Version

MAJOR = 0
MINOR = 9
TINY = 1
TINY = 2

def self.to_s
[ MAJOR, MINOR, TINY ].join('.')
Expand Down

0 comments on commit 3179e42

Please sign in to comment.