fastlane-plugin-notarize 1.1.2 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 97e83712ad91d3028affa72b56705bc3d9f307a8fe752fcb036575e7aa6cab84
4
- data.tar.gz: f37af2ae2e773ce28f7cbf3d796b4189daf8b399f3b6d8774a32653ed372dae1
3
+ metadata.gz: 5ff5b327b7e75ebc657e3780404798ea89c10ee3468f98e9b6aeb591b630ce9c
4
+ data.tar.gz: e068f372ff66ba243d028043f6bec5ffa907bd2759dd769dd33a9d9b769a0db2
5
5
  SHA512:
6
- metadata.gz: eb21813a4e684c22d5851e5ec19dc205a650f06e4592021ee3f36fa9881582c496a9e88e59dcf667dde3387f9b40f2191dba35b3e6dd17d8cc63c8f4f3d74ecf
7
- data.tar.gz: 91431353bdd87ab0d1674edf209010dc776e7d8caa60b7039e65a83fa8310a72774677508bdfc8a4fc2775b1a3cd45029715e22f5f36964112b1c6431d8d24b5
6
+ metadata.gz: 281f97f31170404238a990bc00dcc92decda0356ceac242bcbdb15b2a1ff37347070ff4b1377082721717f10876ff9d8b316628417d89a9561ae6e65d2ee9046
7
+ data.tar.gz: 6d8348cd804eb446420bbd6be9acf483822dfeba2eaede7d634f2da2aed350dda9b7405977b73ee667e3d9375453d6567ec8e1e8425c1f7807f2b5292e2c806f
data/README.md CHANGED
@@ -1,3 +1,7 @@
1
+ # Deprecated
2
+
3
+ Notarize action is now officially a part of fastlane. 🦄 The plugin will be no longer be supported and further improvements and fixes will be made on the official action. Please migrate over to the new action by simply removing the plugin from your Pluginfile and updating Fastlane to the latest version.
4
+
1
5
  # fastlane notarize plugin [![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-notarize)
2
6
 
3
7
  [fastlane](https://github.com/fastlane/fastlane) plugin to [notarize](https://developer.apple.com/documentation/security/notarizing_your_app_before_distribution) a macOS app. 🛂
@@ -176,6 +176,18 @@ module Fastlane
176
176
  def self.is_supported?(platform)
177
177
  platform == :mac
178
178
  end
179
+
180
+ def self.category
181
+ :deprecated
182
+ end
183
+
184
+ def self.deprecated_notes
185
+ [
186
+ "Notarize action is now officially a part of fastlane. 🦄",
187
+ "The plugin will be no longer be supported and further improvements and fixes will be made on the official action.",
188
+ "Please migrate over to the new action by simply removing the plugin from your Pluginfile and updating Fastlane to the latest version."
189
+ ].join("\n")
190
+ end
179
191
  end
180
192
  end
181
193
  end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Notarize
3
- VERSION = '1.1.2'
3
+ VERSION = '1.2.0'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-notarize
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Zeplin, Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-01-29 00:00:00.000000000 Z
11
+ date: 2020-02-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry
@@ -152,7 +152,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
152
152
  - !ruby/object:Gem::Version
153
153
  version: '0'
154
154
  requirements: []
155
- rubygems_version: 3.0.3
155
+ rubygems_version: 3.1.2
156
156
  signing_key:
157
157
  specification_version: 4
158
158
  summary: fastlane plugin to notarize a macOS app