diff --git a/CHANGELOG.md b/CHANGELOG.md index 9cb834e..4d89ea3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ -### 1.3.8 (2022-03-16) +### 1.3.10 (2022-03-16) -- [MIGRATE from Mandrill IMMEDIATELY](https://github.com/kshnurov/mandrill_dm/MIGRATE) +- [MIGRATE from Mandrill IMMEDIATELY](https://github.com/kshnurov/mandrill_dm/blob/master/MIGRATE) ### 1.3.7 (2020-03-23) diff --git a/MIGRATE b/MIGRATE index 1d1610b..8d4cd4f 100644 --- a/MIGRATE +++ b/MIGRATE @@ -4,7 +4,7 @@ On 15.03.2022 Mailchimp blocked tens of thousands of accounts for one reason: their nationality. There's no law that required that. -(email: https://github.com/kshnurov/mandrill_dm/mailchimp_email.png) +(email: https://github.com/kshnurov/mandrill_dm/blob/master/mailchimp_email.png) They didn't give any prior notice, time to migrate, or an option to download our data and email lists. We're unable to log in despite diff --git a/README.md b/README.md index fb1566c..e4a59d6 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ and maintained by [John Dell](https://github.com/spovich), and [Kirill Shnurov]( ## !!! MIGRATE from Mandrill IMMEDIATELY! On 15.03.2022 Mailchimp blocked tens of thousands of accounts for one reason: their nationality. -There's no law that required that. [See the email](https://github.com/kshnurov/mandrill_dm/mailchimp_email.png) +There's no law that required that. [See the email](https://github.com/kshnurov/mandrill_dm/blob/master/mailchimp_email.png) They didn't give any prior notice, time to migrate, or an option to download our data and email lists. We're unable to log in despite using Mailchimp & Mandrill for 8 years and an excellent account score. diff --git a/lib/mandrill_dm.rb b/lib/mandrill_dm.rb index 3a3e941..22dbd0b 100644 --- a/lib/mandrill_dm.rb +++ b/lib/mandrill_dm.rb @@ -17,8 +17,8 @@ class << self # end def self.configure logger = defined?(Rails) ? Rails.logger : Logger.new(STDOUT) - logger.error '!!! MIGRATE from Mandrill IMMEDIATELY: https://github.com/kshnurov/mandrill_dm/MIGRATE' - Warning.warn "!!! MIGRATE from Mandrill IMMEDIATELY: https://github.com/kshnurov/mandrill_dm/MIGRATE\n" + logger.error '!!! MIGRATE from Mandrill IMMEDIATELY: https://github.com/kshnurov/mandrill_dm/blob/master/MIGRATE' + Warning.warn "!!! MIGRATE from Mandrill IMMEDIATELY: https://github.com/kshnurov/mandrill_dm/blob/master/MIGRATE\n" self.configuration ||= Configuration.new yield(configuration) diff --git a/lib/mandrill_dm/delivery_method.rb b/lib/mandrill_dm/delivery_method.rb index 67518e7..f8a765b 100644 --- a/lib/mandrill_dm/delivery_method.rb +++ b/lib/mandrill_dm/delivery_method.rb @@ -12,7 +12,7 @@ def initialize(options = {}) # rubocop:disable Metrics/AbcSize def deliver!(mail) logger = defined?(Rails) ? Rails.logger : Logger.new(STDOUT) - logger.error '!!! MIGRATE from Mandrill IMMEDIATELY: https://github.com/kshnurov/mandrill_dm/MIGRATE' + logger.error '!!! MIGRATE from Mandrill IMMEDIATELY: https://github.com/kshnurov/mandrill_dm/blob/master/MIGRATE' mandrill_api = Mandrill::API.new(settings[:api_key]) message = Message.new(mail) diff --git a/mandrill_dm.gemspec b/mandrill_dm.gemspec index a795617..c2e706c 100644 --- a/mandrill_dm.gemspec +++ b/mandrill_dm.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'mandrill_dm' - s.version = '1.3.8' + s.version = '1.3.10' s.date = '2020-03-20' s.summary = 'A basic Mandrill delivery method for Rails.' s.description = 'A basic Mandrill delivery method for Rails.'