README.md in ahoy_email-2.2.0 vs README.md in ahoy_email-2.3.0
- old
+ new
@@ -2,13 +2,13 @@
First-party email analytics for Rails
:fire: For web and native app analytics, check out [Ahoy](https://github.com/ankane/ahoy)
-:bullettrain_side: To manage unsubscribes, check out [Mailkick](https://github.com/ankane/mailkick)
+:bullettrain_side: To manage email subscriptions, check out [Mailkick](https://github.com/ankane/mailkick)
-[![Build Status](https://github.com/ankane/ahoy_email/workflows/build/badge.svg?branch=master)](https://github.com/ankane/ahoy_email/actions)
+[![Build Status](https://github.com/ankane/ahoy_email/actions/workflows/build.yml/badge.svg)](https://github.com/ankane/ahoy_email/actions)
## Installation
Add this line to your application’s Gemfile:
@@ -104,10 +104,10 @@
### Extra Data
Add extra data to messages. Create a migration like:
```ruby
-class AddCouponIdToAhoyMessages < ActiveRecord::Migration[7.0]
+class AddCouponIdToAhoyMessages < ActiveRecord::Migration[7.1]
def change
add_column :ahoy_messages, :coupon_id, :integer
end
end
```