Skip to content
This repository was archived by the owner on Feb 18, 2025. It is now read-only.

Commit 18c8b3d

Browse files
committed
Merge pull request #304 from AgileBits/release/1.8
[Release] 1.8
2 parents bf1b44b + f7261b5 commit 18c8b3d

File tree

7 files changed

+22
-22
lines changed

7 files changed

+22
-22
lines changed

1PasswordExtension.podspec

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Pod::Spec.new do |spec|
22

3-
spec.name = "1PasswordExtension"
3+
spec.name = "1PasswordExtension"
44
spec.module_name = "OnePasswordExtension"
5-
spec.version = "1.7"
6-
spec.summary = "With just a few lines of code, your app can add 1Password support."
7-
spec.description = <<-DESC
5+
spec.version = "1.8"
6+
spec.summary = "With just a few lines of code, your app can add 1Password support."
7+
spec.description = <<-DESC
88
With just a few lines of code, your app can add 1Password support, enabling your users to:
99
1010
- Access their 1Password Logins to automatically fill your login page.
@@ -14,17 +14,17 @@ Pod::Spec.new do |spec|
1414
Empowering your users to use strong, unique passwords has never been easier.
1515
DESC
1616

17-
spec.homepage = "https://github.com/AgileBits/onepassword-app-extension"
18-
spec.license = { :type => 'MIT', :file => 'LICENSE.txt' }
19-
spec.authors = [ "Dave Teare", "Michael Fey", "Rad Azzouz", "Roustem Karimov" ]
20-
spec.social_media_url = "https://twitter.com/1Password"
17+
spec.homepage = "https://github.com/AgileBits/onepassword-app-extension"
18+
spec.license = { :type => 'MIT', :file => 'LICENSE.txt' }
19+
spec.authors = [ "Dave Teare", "Michael Fey", "Rad Azzouz", "Roustem Karimov" ]
20+
spec.social_media_url = "https://twitter.com/1Password"
2121

22-
spec.source = { :git => "https://github.com/AgileBits/onepassword-app-extension.git", :tag => spec.version }
23-
spec.platform = :ios, 7.0
24-
spec.source_files = "*.{h,m}"
25-
spec.frameworks = [ 'Foundation', 'MobileCoreServices', 'UIKit' ]
26-
spec.weak_framework = "WebKit"
27-
spec.exclude_files = "Demos"
28-
spec.resource_bundles = { 'OnePasswordExtensionResources' => ['1Password.xcassets/*.imageset/*.png', '1Password.xcassets'] }
29-
spec.requires_arc = true
22+
spec.source = { :git => "https://github.com/AgileBits/onepassword-app-extension.git", :tag => spec.version }
23+
spec.platform = :ios, 7.0
24+
spec.source_files = "*.{h,m}"
25+
spec.frameworks = [ 'Foundation', 'MobileCoreServices', 'UIKit' ]
26+
spec.weak_framework = "WebKit"
27+
spec.exclude_files = "Demos"
28+
spec.resource_bundles = { 'OnePasswordExtensionResources' => ['1Password.xcassets/*.imageset/*.png', '1Password.xcassets'] }
29+
spec.requires_arc = true
3030
end

Demos/App Demo for iOS Swift/App Demo for iOS Swift/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.7</string>
18+
<string>1.8</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Demos/App Demo for iOS/App Demo for iOS/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.7</string>
18+
<string>1.8</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Demos/WebView Demo for iOS Swift/WebView Demo for iOS Swift/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.7</string>
18+
<string>1.8</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Demos/WebView Demo for iOS/WebView Demo for iOS/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.7</string>
18+
<string>1.8</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

OnePasswordExtension.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#import "OnePasswordExtension.h"
99

1010
// Version
11-
#define VERSION_NUMBER @(170)
11+
#define VERSION_NUMBER @(180)
1212
static NSString *const AppExtensionVersionNumberKey = @"version_number";
1313

1414
// Available App Extension Actions

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ To get started, download the [zip version](https://github.com/AgileBits/onepassw
3636

3737
Inside the downloaded folder, you'll find the resources needed to integrate with 1Password, such as images and sample code. The sample code includes two apps from ACME Corporation: one that demonstrates how to integrate the 1Password Login and Registration features, as well as a web browser that showcases the web view Filling feature.
3838

39-
The 1Password App Extension API is also available via CocoaPods, simply add `pod '1PasswordExtension', '~> 1.7'` (for the latest stable release) or `pod '1PasswordExtension', :git => 'https://github.com/AgileBits/onepassword-app-extension.git', :branch => 'master'` (for the latest nightly) to your Podfile, run `pod install` from your project directory and you're ready to go.
39+
The 1Password App Extension API is also available via CocoaPods, simply add `pod '1PasswordExtension', '~> 1.8'` (for the latest stable release) or `pod '1PasswordExtension', :git => 'https://github.com/AgileBits/onepassword-app-extension.git', :branch => 'master'` (for the latest nightly) to your Podfile, run `pod install` from your project directory and you're ready to go.
4040

4141
The 1Password App Extension API is available via Carthage as well. Simply add `github "AgileBits/onepassword-extension" "add-framework-support"` to your Cartfile, then run `carthage update` and add it to your project.
4242

0 commit comments

Comments
 (0)