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

Commit 46ea0d8

Browse files
author
Rad Azzouz
committed
Merge pull request #246 from AgileBits/release/1.5
[Release] 1.5
2 parents 5717d9e + ebfdc57 commit 46ea0d8

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

1PasswordExtension.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Pod::Spec.new do |s|
33

44
s.name = "1PasswordExtension"
55
s.header_dir = "OnePasswordExtension"
6-
s.version = "1.2"
6+
s.version = "1.5"
77
s.summary = "With just a few lines of code, your app can add 1Password support."
88

99
s.description = <<-DESC

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.2</string>
18+
<string>1.5</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.2</string>
18+
<string>1.5</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

OnePasswordExtension.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,10 +200,10 @@ NS_ASSUME_NONNULL_BEGIN
200200
- (void)fillReturnedItems:(nullable NSArray *)returnedItems intoWebView:(nonnull id)webView completion:(nullable void (^)(BOOL success, NSError * __nullable error))completion;
201201

202202
/*!
203-
Deprecated in version 1.3.
203+
Deprecated in version 1.5
204204
@see Use fillItemIntoWebView:forViewController:sender:showOnlyLogins:completion: instead
205205
*/
206-
- (void)fillLoginIntoWebView:(nonnull id)webView forViewController:(nonnull UIViewController *)viewController sender:(nullable id)sender completion:(nullable void (^)(BOOL success, NSError * __nullable error))completion __attribute__((deprecated("Use fillItemIntoWebView:forViewController:sender:showOnlyLogins:completion: instead. Deprecated in version 1.3")));
206+
- (void)fillLoginIntoWebView:(nonnull id)webView forViewController:(nonnull UIViewController *)viewController sender:(nullable id)sender completion:(nullable void (^)(BOOL success, NSError * __nullable error))completion __attribute__((deprecated("Use fillItemIntoWebView:forViewController:sender:showOnlyLogins:completion: instead. Deprecated in version 1.5")));
207207
@end
208208

209209
#if __has_feature(nullability)

OnePasswordExtension.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#import "OnePasswordExtension.h"
99

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

1414
// Available App Extension Actions
@@ -659,7 +659,7 @@ + (NSError *)failedToObtainURLStringFromWebViewError {
659659
#pragma mark - Deprecated methods
660660

661661
/*
662-
Deprecated in version 1.3.
662+
Deprecated in version 1.5
663663
Use fillItemIntoWebView:forViewController:sender:showOnlyLogins:completion: instead
664664
*/
665665
- (void)fillLoginIntoWebView:(nonnull id)webView forViewController:(nonnull UIViewController *)viewController sender:(nullable id)sender completion:(nullable void (^)(BOOL success, NSError * __nullable error))completion {

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.2'` (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.5'` (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)