Skip to content

Commit

Permalink
Merge pull request #29 from railsware/release_1.1.1
Browse files Browse the repository at this point in the history
Release 1.1.1
  • Loading branch information
i7an authored Dec 10, 2024
2 parents e270520 + a803d66 commit c8a3931
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
/pkg/
/spec/reports/
/tmp/
*.DS_Store

# rspec failure tracking
.rspec_status
Expand Down
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## [1.1.1] - 2024-12-09
- Fix crash when no settings are provided for a delivery method

```ruby
config.action_mailer.balancer_settings = {
delivery_methods: [
{
method: :mailtrap,
weight: 1
}
]
}
```

*Alex Ghiculescu*

## [1.1.0] - 2024-08-19

- Dropped Ruby 2.7 support
Expand Down
14 changes: 6 additions & 8 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@ source 'https://rubygems.org'

gemspec

group :development do
gem 'mail'
gem 'rake', '~> 13.0'
gem 'rspec', '~> 3.0'
gem 'rubocop', '~> 1.21'
gem 'rubocop-rake', require: false
gem 'rubocop-rspec', require: false
end
gem 'mail'
gem 'rake', '~> 13.0'
gem 'rspec', '~> 3.0'
gem 'rubocop', '~> 1.21'
gem 'rubocop-rake'
gem 'rubocop-rspec'
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
actionmailer-balancer (1.1.0)
actionmailer-balancer (1.1.1)
actionmailer (> 4.0, < 8.0)

GEM
Expand Down
2 changes: 1 addition & 1 deletion lib/actionmailer/balancer/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module ActionMailer
module Balancer
VERSION = '1.1.0'
VERSION = '1.1.1'
end
end

0 comments on commit c8a3931

Please sign in to comment.