Skip to content

Commit

Permalink
Merge pull request #362 from haines/release-v0.4.0
Browse files Browse the repository at this point in the history
Prepare release v0.4.0
  • Loading branch information
haines authored Jun 22, 2022
2 parents 02fb277 + b623b61 commit 85d3037
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 13 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

No notable changes.

## [0.4.0] - 2022-06-22

### Changed
* Test against Ruby 3.1 ([#305](https://github.com/haines/pg-aws_rds_iam/pull/305))
* Require Ruby ≥ 2.6 and Active Record ≥ 6.0 ([#360](https://github.com/haines/pg-aws_rds_iam/pull/360))
Expand Down Expand Up @@ -48,7 +52,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
* A plugin for the [`pg` gem](https://rubygems.org/gems/pg) that adds support for [IAM authentication](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html) when connecting to PostgreSQL databases hosted in Amazon RDS. ([#1](https://github.com/haines/pg-aws_rds_iam/pull/1))
* ActiveRecord support. ([#3](https://github.com/haines/pg-aws_rds_iam/pull/3))

[Unreleased]: https://github.com/haines/pg-aws_rds_iam/compare/v0.3.2...HEAD
[Unreleased]: https://github.com/haines/pg-aws_rds_iam/compare/v0.4.0...HEAD
[0.4.0]: https://github.com/haines/pg-aws_rds_iam/compare/v0.3.2...v0.4.0
[0.3.2]: https://github.com/haines/pg-aws_rds_iam/compare/v0.3.1...v0.3.2
[0.3.1]: https://github.com/haines/pg-aws_rds_iam/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/haines/pg-aws_rds_iam/compare/v0.2.0...v0.3.0
Expand Down
20 changes: 9 additions & 11 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,24 +1,23 @@
PATH
remote: .
specs:
pg-aws_rds_iam (0.3.2)
pg-aws_rds_iam (0.4.0)
aws-sdk-rds (~> 1.0)
pg (>= 0.18, < 2.0)

GEM
remote: https://rubygems.org/
specs:
activemodel (6.1.3)
activesupport (= 6.1.3)
activerecord (6.1.3)
activemodel (= 6.1.3)
activesupport (= 6.1.3)
activesupport (6.1.3)
activemodel (7.0.3)
activesupport (= 7.0.3)
activerecord (7.0.3)
activemodel (= 7.0.3)
activesupport (= 7.0.3)
activesupport (7.0.3)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
zeitwerk (~> 2.3)
ansi (1.5.0)
ast (2.4.2)
aws-eventstream (1.2.0)
Expand All @@ -39,8 +38,8 @@ GEM
builder (3.2.4)
coderay (1.1.3)
commonmarker (0.23.5)
concurrent-ruby (1.1.8)
i18n (1.8.9)
concurrent-ruby (1.1.10)
i18n (1.10.0)
concurrent-ruby (~> 1.0)
jmespath (1.6.1)
method_source (1.0.0)
Expand Down Expand Up @@ -84,7 +83,6 @@ GEM
webrick (1.7.0)
yard (0.9.28)
webrick (~> 1.7.0)
zeitwerk (2.4.2)

PLATFORMS
ruby
Expand Down
2 changes: 1 addition & 1 deletion lib/pg/aws_rds_iam/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
module PG
module AWS_RDS_IAM
# The current version of the gem.
VERSION = "0.3.2"
VERSION = "0.4.0"
end
end

0 comments on commit 85d3037

Please sign in to comment.