Skip to content

Commit

Permalink
Fix failing specs caused by latest version of mail gem (#135)
Browse files Browse the repository at this point in the history
## What

Locks the `mail` dependency to `~> 2.7.0`

## Why

`v 2.8.0` of the mail gem is causing [tests to
fail](https://app.circleci.com/pipelines/github/ActiveCampaign/postmark-gem/115/workflows/98f981da-bff4-4abb-b0ad-eaeb8045e873).

Currently investigating here mikel/mail#1539,
but since it's just a development dependency we can lock the version to
the CI back to green for now.
  • Loading branch information
balvig authored Dec 13, 2022
1 parent f91a876 commit 378773c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion postmark.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ Gem::Specification.new do |s|

s.add_dependency "json"

s.add_development_dependency "mail"
s.add_development_dependency "mail", "~> 2.7.0" # https://github.com/mikel/mail/pull/1539
s.add_development_dependency "rake"
end

0 comments on commit 378773c

Please sign in to comment.