Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

prepare for 0.33 release #352

Closed
wants to merge 1 commit into from
Closed
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
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

## [Unreleased] - 🔜

## [0.33.0] - 2021-09-29
### Changed
- fix: handle args correctly in ruby 3.1.2 ([#351](https://github.com/interagent/pliny/pull/351)).

## [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)).
Expand Down Expand Up @@ -192,7 +196,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/v0.33.0...master
[0.33.0]: https://github.com/interagent/pliny/compare/v0.32.0...v0.33.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
Expand Down
2 changes: 1 addition & 1 deletion lib/pliny/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Pliny
VERSION = "0.32.0"
VERSION = "0.33.0"
end
2 changes: 1 addition & 1 deletion lib/template/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ruby "2.4.0"
gem "multi_json"
gem "oj"
gem "pg"
gem "pliny", "~> 0.32"
gem "pliny", "~> 0.33"
gem "pry"
gem "puma", "~> 3"
gem "rack-ssl"
Expand Down