Skip to content

Commit

Permalink
version 2.0.0
Browse files Browse the repository at this point in the history
Add support for Swift 3
  • Loading branch information
angelodipaolo committed Nov 14, 2016
1 parent 2f603cb commit 027f0a8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# [2.0.0](https://github.com/Electrode-iOS/ELKeychain/releases/tag/v2.0.0)

- Migrated to Swift 3
- Disabled code signing per Xcode 8's recommended project settings

# [1.1.0](https://github.com/Electrode-iOS/ELKeychain/releases/tag/v1.1.0)

- Added support for Xcode 8, Swift 2.3, and iOS SDK 10
2 changes: 1 addition & 1 deletion ELKeychain/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.1.0</string>
<string>2.0.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# ELKeychain

[![Version](https://img.shields.io/badge/version-v1.1.0-blue.svg)](https://github.com/Electrode-iOS/ELKeychain/releases/latest)
[![Version](https://img.shields.io/badge/version-v2.0.0-blue.svg)](https://github.com/Electrode-iOS/ELKeychain/releases/latest)
[![Build Status](https://travis-ci.org/Electrode-iOS/ELKeychain.svg?branch=master)](https://travis-ci.org/Electrode-iOS/ELKeychain)
[![Carthage Compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)

A Swift framework for storing, retrieving, and removing generic password items in the system Keychain.

## Requirements

ELCodable requires Swift 2.3 and Xcode 8.
ELKeychain requires Swift 3 and Xcode 8.

## Installation

Expand All @@ -17,7 +17,7 @@ ELCodable requires Swift 2.3 and Xcode 8.
Install with [Carthage](https://github.com/Carthage/Carthage) by adding the framework to your project's [Cartfile](https://github.com/Carthage/Carthage/blob/master/Documentation/Artifacts.md#cartfile).

```
github "Electrode-iOS/ELKeychain" ~> 1.1.0
github "Electrode-iOS/ELKeychain" ~> 2.0.0
```

### Manual
Expand Down Expand Up @@ -48,7 +48,6 @@ do {
} else {
// unable to find password to unlock
}
} catch let error {
// an error occurred while retrieving the keychain item
}
Expand Down

0 comments on commit 027f0a8

Please sign in to comment.