Skip to content

Commit

Permalink
Merge pull request #193 from radex/release/4.0.0
Browse files Browse the repository at this point in the history
[Release] 4.0.0
  • Loading branch information
sunshinejr authored Apr 26, 2019
2 parents c56b0eb + 3c0c380 commit 566ace1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
### Next

### 4.0.0 (2019-04-26)

* Updated `DefaultsKey.defaultValue` access level to `public`. [@DivineDominion](https://github.com/DivineDominion)
* Updated accesslevel of all bridges to `open` from `public`. [@fredpi](https://github.com/fredpi )

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Read [documentation for stable version 3.0.1](https://github.com/radex/SwiftyUse
Read [migration guide from version 3.x to 4.x](MigrationGuides/migration_3_to_4.md)<br />
Read [migration guide from version 4.0.0-alpha.1 to 4.0.0-alpha.3](MigrationGuides/migration_4_alpha_1_to_4_alpha_2.md)

# Version 4 - beta 2
# Version 4

<p align="center">
<a href="#features">Features</a> &bull;
Expand Down Expand Up @@ -380,7 +380,7 @@ let hasKey = Defaults.hasKey(.skipLogin)
If you're using CocoaPods, just add this line to your Podfile:

```ruby
pod 'SwiftyUserDefaults', '4.0.0-beta.2'
pod 'SwiftyUserDefaults', '~> 4.0.0'
```

Install by running this command in your terminal:
Expand All @@ -400,7 +400,7 @@ import SwiftyUserDefaults
Just add to your Cartfile:

```ruby
github "radex/SwiftyUserDefaults" "4.0.0-beta.2"
github "radex/SwiftyUserDefaults" "4.0.0"
```

### Swift Package Manager
Expand All @@ -411,7 +411,7 @@ let package = Package(
name: "MyPackage",
products: [...],
dependencies: [
.package(url: "https://github.com/radex/SwiftyUserDefaults.git", .exact("4.0.0-beta.2")),
.package(url: "https://github.com/radex/SwiftyUserDefaults.git", .upToNextMajor(from: "4.0.0"),
],
targets: [...]
)
Expand Down
2 changes: 1 addition & 1 deletion SwiftyUserDefaults.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'SwiftyUserDefaults'
s.version = '4.0.0-beta.2'
s.version = '4.0.0'
s.license = 'MIT'
s.summary = 'Swifty API for NSUserDefaults'
s.homepage = 'https://github.com/radex/SwiftyUserDefaults'
Expand Down

0 comments on commit 566ace1

Please sign in to comment.