Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
vpeschenkov committed Nov 21, 2022
1 parent 6aa0fe6 commit 7d4f080
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Expand Up @@ -23,3 +23,11 @@
# 1.0.6
### Fixed
- Crash with `fatal error: 'try!' expression unexpectedly raised`

# 1.0.7
### Fixed
Removed UnsafePointer warning

# 1.1.0
### Fixed
- Fix force type casting crash
9 changes: 3 additions & 6 deletions README.md
Expand Up @@ -87,17 +87,15 @@ public func rawObject(forKey defaultName: String) -> Any?
it, simply add the following line to your Podfile:

```ruby
pod 'SecureDefaults', '1.0.7' # Swift 5.0
pod 'SecureDefaults', '1.0.0' # Swift 4.2
pod 'SecureDefaults', '1.1.0' # Swift 5.0
```

### [Carthage](https://github.com/Carthage/Carthage)

Add this to `Cartfile`

```ruby
github "vpeschenkov/SecureDefaults" == 1.0.7 # Swift 5.0
github "vpeschenkov/SecureDefaults" == 1.0.0 # Swift 4.2
github "vpeschenkov/SecureDefaults" == 1.1.0
```

```sh
Expand All @@ -109,14 +107,13 @@ $ carthage update
Create a `Package.swift` file.

```swift
// swift-tools-version:4.2

import PackageDescription

let package = Package(
name: "YourProject",
dependencies: [
.package(url: "https://github.com/vpeschenkov/SecureDefaults", "1.0.7")
.package(url: "https://github.com/vpeschenkov/SecureDefaults", "1.1.0")
],
targets: [
.target(name: "YourProject", dependencies: ["SecureDefaults"])
Expand Down
4 changes: 2 additions & 2 deletions SecureDefaults.podspec
@@ -1,14 +1,14 @@
Pod::Spec.new do |s|
s.name = 'SecureDefaults'
s.version = '1.0.7'
s.version = '1.1.0'
s.summary = 'A lightweight wrapper over UserDefaults/NSUserDefaults with an extra AES-256 encryption layer'
s.homepage = 'https://github.com/vpeschenkov/SecureDefaults'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Victor Peschenkov' => 'v.peschenkov@gmail.com' }
s.source = { :git => 'https://github.com/vpeschenkov/SecureDefaults.git', :tag => s.version.to_s }
s.swift_version = '5.0'
s.social_media_url = 'https://twitter.com/vpeschenkov'
s.ios.deployment_target = '8.0'
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.11'
s.source_files = 'Sources/SecureDefaults/**/*'
end
2 changes: 1 addition & 1 deletion main.xcconfig
@@ -1,2 +1,2 @@
IPHONEOS_DEPLOYMENT_TARGET = 8.0
IPHONEOS_DEPLOYMENT_TARGET = 9.0
MACOSX_DEPLOYMENT_TARGET = 10.11

0 comments on commit 7d4f080

Please sign in to comment.