Skip to content

Commit

Permalink
Merge pull request #216 from sunshinejr/release/5.0.0-beta.3
Browse files Browse the repository at this point in the history
[Release] 5.0.0-beta.3
  • Loading branch information
sunshinejr authored Sep 25, 2019
2 parents 8ab5c17 + 22d8eb5 commit 0e57cc2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
### Next

### 5.0.0-beta.3 (2019-09-25)

* Fixed an issue with SPM integration - it no longer fetches testing libraries & doesn't create runtime crashes or Xcode Preview crashes anymore. [@sunshinejr](/~https://github.com/sunshinejr).
* Fixed an issue where Carthage users using Xcode 11 couldn't install SwiftyUserDefaults 5. We added weak-linking for the xcodeproj so you might need additional steps for Xcode 10 + Carthage + SwiftyUserDefaults 5.* users. [@sunshinejr](/~https://github.com/sunshinejr).

Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# SwiftyUserDefaults

![Platforms](https://img.shields.io/badge/platforms-ios%20%7C%20osx%20%7C%20watchos%20%7C%20tvos-lightgrey.svg)
[![CI Status](https://api.travis-ci.org/radex/SwiftyUserDefaults.svg?branch=master)](https://travis-ci.org/radex/SwiftyUserDefaults)
[![CI Status](https://api.travis-ci.org/sunshinejr/SwiftyUserDefaults.svg?branch=master)](https://travis-ci.org/sunshinejr/SwiftyUserDefaults)
[![CocoaPods compatible](https://img.shields.io/badge/CocoaPods-compatible-4BC51D.svg?style=flat)](#cocoapods)
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](#carthage)
[![SPM compatible](https://img.shields.io/badge/SPM-compatible-4BC51D.svg?style=flat)](#swift-package-manager)
Expand All @@ -13,10 +13,10 @@
#### Modern Swift API for `NSUserDefaults`
###### SwiftyUserDefaults makes user defaults enjoyable to use by combining expressive Swifty API with the benefits of static typing. Define your keys in one place, use value types easily, and get extra safety and convenient compile-time checks for free.

Previous versions' documentation: [Version 4.0.0](/~https://github.com/sunshinejr/SwiftyUserDefaults/blob/566ace16ee91242b61e2e9da6cdbe7dfdadd926c/README.md), [Version 3.0.1](/~https://github.com/radex/SwiftyUserDefaults/blob/14b629b035bf6355b46ece22c3851068a488a895/README.md)<br />
Previous versions' documentation: [Version 4.0.0](/~https://github.com/sunshinejr/SwiftyUserDefaults/blob/566ace16ee91242b61e2e9da6cdbe7dfdadd926c/README.md), [Version 3.0.1](/~https://github.com/sunshinejr/SwiftyUserDefaults/blob/14b629b035bf6355b46ece22c3851068a488a895/README.md)<br />
Migration guides: [from 4.x to 5.x](MigrationGuides/migration_4_to_5.md), [from 4.0.0-alpha.1 to 4.0.0-alpha.3](MigrationGuides/migration_4_alpha_1_to_4_alpha_2.md), [from 3.x to 4.x](MigrationGuides/migration_3_to_4.md)

# Version 5.0.0-beta.2
# Version 5.0.0-beta.3

<p align="center">
<a href="#features">Features</a> &bull;
Expand Down Expand Up @@ -311,7 +311,7 @@ extension Data: DefaultsSerializable {
}
```

Also, take a look at our source code (or tests) to see more examples of bridges. If you find yourself confused with all these bridges, please [create an issue](/~https://github.com/radex/SwiftyUserDefaults/issues/new) and we will figure something out.
Also, take a look at our source code (or tests) to see more examples of bridges. If you find yourself confused with all these bridges, please [create an issue](/~https://github.com/sunshinejr/SwiftyUserDefaults/issues/new) and we will figure something out.

## Property wrappers

Expand Down Expand Up @@ -489,7 +489,7 @@ let hasKey = Defaults.hasKey(\.skipLogin)
If you're using CocoaPods, just add this line to your Podfile:

```ruby
pod 'SwiftyUserDefaults', '5.0.0-beta.2'
pod 'SwiftyUserDefaults', '5.0.0-beta.3'
```

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

```ruby
github "radex/SwiftyUserDefaults" "5.0.0-beta.2"
github "sunshinejr/SwiftyUserDefaults" "5.0.0-beta.3"
```

#### SwiftyUserDefaults 5+, Carthage and Xcode 10
Expand All @@ -529,7 +529,7 @@ let package = Package(
name: "MyPackage",
products: [...],
dependencies: [
.package(url: "/~https://github.com/radex/SwiftyUserDefaults.git", .exact("5.0.0-beta.2"),
.package(url: "/~https://github.com/sunshinejr/SwiftyUserDefaults.git", .exact("5.0.0-beta.3"),
],
targets: [...]
)
Expand Down
4 changes: 2 additions & 2 deletions SwiftyUserDefaults.podspec
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Pod::Spec.new do |s|
s.name = 'SwiftyUserDefaults'
s.version = '5.0.0-beta.2'
s.version = '5.0.0-beta.3'
s.license = 'MIT'
s.summary = 'Swifty API for NSUserDefaults'
s.homepage = '/~https://github.com/radex/SwiftyUserDefaults'
s.homepage = '/~https://github.com/sunshinejr/SwiftyUserDefaults'
s.authors = { 'Radek Pietruszewski' => 'this.is@radex.io', 'Łukasz Mróz' => 'thesunshinejr@gmail.com' }
s.source = { :git => '/~https://github.com/radex/SwiftyUserDefaults.git', :tag => s.version }

Expand Down

0 comments on commit 0e57cc2

Please sign in to comment.