Skip to content

Commit

Permalink
Prepare for v3.0.0
Browse files Browse the repository at this point in the history
Most of the changes since 2.0.0 are dev dependency updates, but since we
have enforced a minimum Ruby version since, it is technically a breaking
change, hence a major version change.
  • Loading branch information
ameykusurkar committed Aug 23, 2022
1 parent 69d2b9d commit a5e3f1e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ jobs:
docker:
- image: ruby:2.6
steps: *steps
build-ruby27:
docker:
- image: ruby:2.7
steps: *steps
build-jruby91:
docker:
- image: jruby:9.1
Expand All @@ -57,4 +61,5 @@ workflows:
- build-ruby24
- build-ruby25
- build-ruby26
- build-ruby27
- build-jruby91
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 3.0.0

* Enforce Ruby 2.2 as minimum required version
* Use CircleCI instead of Travis for CI builds
* Add Dependabot support
* Some development dependency updates

# 2.0.0

* Drop support for Ruby versions 1.9, 2.0, 2.1, and add support for 2.3 and 2.4
Expand Down
2 changes: 1 addition & 1 deletion lib/prius/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Prius
VERSION = "2.0.0".freeze
VERSION = "3.0.0".freeze
end

0 comments on commit a5e3f1e

Please sign in to comment.