Skip to content

Commit

Permalink
Bump to v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenharman committed May 14, 2024
1 parent 7d10b4a commit 84eec29
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
## [Unreleased](https://github.com/fgrehm/letter_opener_web/compare/v2.0.0...master)
## [Unreleased](https://github.com/fgrehm/letter_opener_web/compare/v3.0.0...master)

## [3.0.0](https://github.com/fgrehm/letter_opener_web/compare/v2.0.0...v3.0.0)

### Breaking
- Drop EoL'd Rubies and Rails - now requires Ruby 3.1+ and Rails 6.1+.
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ First add the gem to your development environment and run the `bundle` command t

```ruby
group :development do
gem 'letter_opener_web', '~> 2.0'
gem 'letter_opener_web', '~> 3.0'
end
```

## Usage

Add to your routes.rb:
Add to your `routes.rb`:

```ruby
Your::Application.routes.draw do
Expand Down Expand Up @@ -53,7 +53,7 @@ config.action_mailer.delivery_method = :letter_opener_web
```

If you're using `:letter_opener_web` as your delivery method, you can change the location of
the letters by adding the following to an initializer (or in development.rb):
the letters by adding the following to an initializer (or in `development.rb`):

```ruby
LetterOpenerWeb.configure do |config|
Expand Down Expand Up @@ -106,7 +106,7 @@ few years.
## Contributing

1. Fork it and run `bin/setup`
2. Create your feature branch (`git checkout -b my-new-feature`)
2. Create your feature branch (`git switch -c my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request
2 changes: 1 addition & 1 deletion lib/letter_opener_web/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module LetterOpenerWeb
VERSION = '2.0.0'
VERSION = '3.0.0'
end

0 comments on commit 84eec29

Please # to comment.