app_store_connect 0.35.0 → 0.36.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: dc0408c0134453d1ab4a61791c10e22a2bb22f2872cb73e1e8323489bdddaf96
4
- data.tar.gz: 3290a3571293cf80808feb4ed2b29169bc0091287d848fdf626dd2c0062c277a
3
+ metadata.gz: 3b25b35978535371b2a3e281988f52ce38849d55389430c3f40435c468d34546
4
+ data.tar.gz: 9bbea294b01108795d5eb5895a1c4045cb38eaa5ce9225dcffd32cddb6c9de93
5
5
  SHA512:
6
- metadata.gz: 6714cda55b9c64af4fb39d6b934134e1c21914acc19ea1873890646d96c1d19d6124c512d84a4b1ff0e84dcb0db7514d9788868ed0849a344e1666903ff91c10
7
- data.tar.gz: 3e9d55bac6f710781a8b34a533df9a1e442553730fd96670406c1634d49686a5e27551d03d66027fe15d94545e7cc1bf4ffbcb1fa707561693c52c42d304247b
6
+ metadata.gz: fba7f5c4987ba2ceafac76eadc8ba22db585d695ec0e1f97e0834ca78d389e6ff5485ba4b544f457b833dcadd6dd51bceafb619c01353969978c47dcd5576246
7
+ data.tar.gz: 577d9913a278224e036eb267dc61398c49a7053d3479d93e784aec2406eb35e30076f77eb9d5b529a0f0728266e3c3cd0ad6ea99050052e192e7d87b2276efb9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## [v0.35.0](https://github.com/kyledecot/app_store_connect/tree/v0.35.0) (2023-02-08)
4
+
5
+ [Full Changelog](https://github.com/kyledecot/app_store_connect/compare/v0.34.0...v0.35.0)
6
+
3
7
  ## [v0.34.0](https://github.com/kyledecot/app_store_connect/tree/v0.34.0) (2023-02-08)
4
8
 
5
9
  [Full Changelog](https://github.com/kyledecot/app_store_connect/compare/v0.33.0...v0.34.0)
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- app_store_connect (0.35.0)
4
+ app_store_connect (0.36.0)
5
5
  activesupport (>= 6.0.0)
6
6
  jwt (>= 1.4)
7
7
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AppStoreConnect
4
- VERSION = '0.35.0'
4
+ VERSION = '0.36.0'
5
5
  end
data/lib/tasks/git.rake CHANGED
@@ -1,8 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  namespace :git do
4
- task :add, [:flags] do |_task, args|
5
- `git add #{args[:flags]}`
4
+ task :add, [:extra] do |_task, args|
5
+ `git add #{args[:extra]}`
6
6
  end
7
7
 
8
8
  task :commit, [:message] do |_task, args|
@@ -13,7 +13,7 @@ namespace :git do
13
13
  `git tag #{args[:tag]}`
14
14
  end
15
15
 
16
- task :push, [:flags] do |_task, args|
17
- `git push #{args[:flags]}`
16
+ task :push, [:extra] do |_task, args|
17
+ `git push #{args[:extra]}`
18
18
  end
19
19
  end
@@ -12,5 +12,6 @@ task :release do
12
12
  Rake::Task['git:add'].invoke('-A')
13
13
  Rake::Task['git:commit'].invoke("v#{version}")
14
14
  Rake::Task['git:tag'].invoke("v#{version}")
15
- Rake::Task['git:push'].invoke('--follow-tags')
15
+ Rake::Task['git:push'].invoke('origin main')
16
+ Rake::Task['git:push'].invoke("origin v#{version}")
16
17
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: app_store_connect
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.35.0
4
+ version: 0.36.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kyle Decot
@@ -299,7 +299,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
299
299
  - !ruby/object:Gem::Version
300
300
  version: '0'
301
301
  requirements: []
302
- rubygems_version: 3.4.1
302
+ rubygems_version: 3.3.26
303
303
  signing_key:
304
304
  specification_version: 4
305
305
  summary: A Ruby interface to the App Store Connect API