diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a601d89..b9506bdd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,20 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p ## [Unreleased] - 🔜 +## [1.0.0] - 🔜 +### Added +- Add support for Ruby 3.1 and 3.2 ([#355](https://github.com/interagent/pliny/pull/355)) +- Add support for Sinatra 3 ([#356](https://github.com/interagent/pliny/pull/356)) +- Add support for ActiveSupport 7 ([#357](https://github.com/interagent/pliny/pull/357)) + +### Removed +- Drop support for Ruby 2.5, 2.6 and 2.7 ([#355](https://github.com/interagent/pliny/pull/355)) +- Drop support for Sinatra 1 ([#356](https://github.com/interagent/pliny/pull/356)) +- Drop support for ActiveSupport 5 ([#357](https://github.com/interagent/pliny/pull/357)) + +### Changed +- update template Gemfile ([#359](https://github.com/interagent/pliny/pull/359)) + ## [0.32.0] - 2021-09-29 ### Changed - Add `rake db:migrate:status` to report the status of database migrations ([#345](https://github.com/interagent/pliny/pull/345)). @@ -192,7 +206,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p - Useless code coverage reports. ([#255](https://github.com/interagent/pliny/pull/255)) - Cleanup of active database connections after migration runs. ([#257](https://github.com/interagent/pliny/pull/257)) -[Unreleased]: https://github.com/interagent/pliny/compare/v0.30.2...master +[Unreleased]: https://github.com/interagent/pliny/compare/v1.0.0...master +[1.0.0]: https://github.com/interagent/pliny/compare/v0.30.2...v1.0.0 [0.32.0]: https://github.com/interagent/pliny/compare/v0.31.0...v0.32.0 [0.31.0]: https://github.com/interagent/pliny/compare/v0.30.1...v0.31.0 [0.30.1]: https://github.com/interagent/pliny/compare/v0.30.0...v0.30.1 diff --git a/lib/pliny/version.rb b/lib/pliny/version.rb index 90077290..d6f29ea7 100644 --- a/lib/pliny/version.rb +++ b/lib/pliny/version.rb @@ -1,3 +1,3 @@ module Pliny - VERSION = "0.32.0" + VERSION = "1.0.0" end