Skip to content

Commit

Permalink
Update README & links
Browse files Browse the repository at this point in the history
  • Loading branch information
kshnurov committed Mar 16, 2022
1 parent d41f790 commit feb96b5
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion MIGRATE
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions lib/mandrill_dm.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion lib/mandrill_dm/delivery_method.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion mandrill_dm.gemspec
Original file line number Diff line number Diff line change
@@ -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.'
Expand Down

0 comments on commit feb96b5

Please sign in to comment.