workarea-mail_chimp 3.0.5 → 3.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 41cfd83dd223b48a89ca96973ab54ab6c2e7ca6452b6463f7b53da9962494789
4
- data.tar.gz: e5123ca279c64e80ebfea4f66bb54b7e958a7ab656bd99c636d6d7e754396ba9
3
+ metadata.gz: d9f2b403a37855e3911b03ce84baff96c18633fadaef17da965d76f0e8c24ddd
4
+ data.tar.gz: 9260a00eed480d203861feee839cddccd24d7a2ebdfadee6dc198a4007ea2a1d
5
5
  SHA512:
6
- metadata.gz: 7fdb96e6aee9dbc6b27432340b3554bc7b261a89f3f71db5a027c8137609d05fb35b390e8088e94df6f3f531e15f83891b15275a5288260326427d819e462a27
7
- data.tar.gz: f6cb0cfc8e141800d217e274212ebce72989e8e32e2e85a15a507459638e984b33730142f159755224b6fce7760fc2715a4735445300009b3fe63a2c349f9ebb
6
+ metadata.gz: 7adb3e9e05a7e1cae01cecf96777cdaa5eec210a328d273016a63941a67a906bd5cc78f89c21939a655b1d7abb87beca99acee84219d86455d251d81ec192da7
7
+ data.tar.gz: 5c0331d434e9fbf9a2e14f4df71e18939fe91de7638d5fa0351ca234e52ac65faf9e71d49d537e0d4426333de9f1267bb995b26a0180d0a99fe93d7be659abcb
@@ -1,3 +1,13 @@
1
+ Workarea Mail Chimp 3.1.0 (2020-01-07)
2
+ --------------------------------------------------------------------------------
3
+
4
+ * Update mailchimp for 3.5 compatibility.
5
+
6
+ MAILCHIMP-3
7
+ Jeff Yucis
8
+
9
+
10
+
1
11
  Workarea Mail Chimp 3.0.5 (2019-11-12)
2
12
  --------------------------------------------------------------------------------
3
13
 
data/Gemfile CHANGED
@@ -3,7 +3,7 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
3
3
 
4
4
  gemspec
5
5
 
6
- gem 'workarea', github: 'workarea-commerce/workarea', branch: 'v3.4-stable'
6
+ gem 'workarea', github: 'workarea-commerce/workarea', branch: 'v3.5-stable'
7
7
 
8
8
  group :test, :development do
9
9
  gem "simplecov", require: false
data/Rakefile CHANGED
@@ -41,10 +41,9 @@ task :release do
41
41
  Rake::Task["workarea:changelog"].execute
42
42
  system "git add CHANGELOG.md"
43
43
  system 'git commit -m "Update CHANGELOG"'
44
- system "git push origin HEAD"
45
44
 
46
45
  system "git tag -a v#{Workarea::MailChimp::VERSION} -m 'Tagging #{Workarea::MailChimp::VERSION}'"
47
- system "git push --tags"
46
+ system "git push origin HEAD --follow-tags"
48
47
 
49
48
  system "gem build workarea-mail_chimp.gemspec"
50
49
  system "gem push workarea-mail_chimp-#{Workarea::MailChimp::VERSION}.gem"
@@ -1,5 +1,5 @@
1
1
  module Workarea
2
2
  module MailChimp
3
- VERSION = "3.0.5".freeze
3
+ VERSION = "3.1.0".freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: workarea-mail_chimp
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.5
4
+ version: 3.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mark Platt
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-11-12 00:00:00.000000000 Z
12
+ date: 2020-01-07 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: workarea
@@ -145,7 +145,6 @@ files:
145
145
  - test/dummy/config/initializers/inflections.rb
146
146
  - test/dummy/config/initializers/mime_types.rb
147
147
  - test/dummy/config/initializers/new_framework_defaults.rb
148
- - test/dummy/config/initializers/session_store.rb
149
148
  - test/dummy/config/initializers/workarea.rb
150
149
  - test/dummy/config/initializers/wrap_parameters.rb
151
150
  - test/dummy/config/locales/en.yml
@@ -1,3 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- Rails.application.config.session_store :cookie_store, key: '_dummy_session'