From 2e6c3c453338c22c57356b01f613a6c012bd2d68 Mon Sep 17 00:00:00 2001 From: Jason Garber Date: Mon, 20 Jan 2020 16:18:16 -0500 Subject: [PATCH] Bump version and update documentation --- CHANGELOG.md | 4 ++++ CONTRIBUTING.md | 2 +- README.md | 2 +- lib/svgeez/version.rb | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f59dbb..f47f79d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 3.1.0 / 2020-01-20 + +- Expand supported Ruby versions to include 2.7 ([bcc23b5](https://github.com/jgarber623/svgeez/commit/bcc23b5)). + ## 3.0.0 / 2019-08-02 ### Breaking Changes diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c7b1fc4..e2e69cf 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,7 +8,7 @@ There are a couple ways you can help improve svgeez: ## Getting Started -svgeez is developed using Ruby 2.4.9 and is additionally tested against Ruby 2.5 and 2.6 using [Travis CI](https://travis-ci.org/jgarber623/svgeez). +svgeez is developed using Ruby 2.4.9 and is additionally tested against Ruby 2.5, 2.6, and 2.7 using [Travis CI](https://travis-ci.org/jgarber623/svgeez). Before making changes to svgeez, you'll want to install Ruby 2.4.9. It's recommended that you use a Ruby version managment tool like [rbenv](https://github.com/rbenv/rbenv), [chruby](https://github.com/postmodern/chruby), or [rvm](https://github.com/rvm/rvm). Once you've installed Ruby 2.4.9 using your method of choice, install the project's gems by running: diff --git a/README.md b/README.md index 95fd508..7cd14f4 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ _For more on why SVG sprites are the bee's knees as far as icon systems go, give ## Getting Started -Before installing and using svgeez, you'll want to have Ruby 2.4 (or newer) installed on your computer. There are plenty of ways to go about this, but my preference is [rbenv](https://github.com/sstephenson/rbenv). svgeez is developed using Ruby 2.4.9 and is additionally tested against Ruby 2.5 and 2.6 using [Travis CI](https://travis-ci.org/jgarber623/svgeez). +Before installing and using svgeez, you'll want to have Ruby 2.4 (or newer) installed on your computer. There are plenty of ways to go about this, but my preference is [rbenv](https://github.com/sstephenson/rbenv). svgeez is developed using Ruby 2.4.9 and is additionally tested against Ruby 2.5, 2.6, and 2.7 using [Travis CI](https://travis-ci.org/jgarber623/svgeez). ## Installation diff --git a/lib/svgeez/version.rb b/lib/svgeez/version.rb index 408b8e8..0c1971c 100644 --- a/lib/svgeez/version.rb +++ b/lib/svgeez/version.rb @@ -1,3 +1,3 @@ module Svgeez - VERSION = '3.0.0'.freeze + VERSION = '3.1.0'.freeze end