Skip to content

Commit

Permalink
3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Oct 30, 2019
1 parent 89d2d4d commit 9ce53ee
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
language: swift
osx_image: xcode11
osx_image: xcode11.2
script: xcodebuild test -project Defaults.xcodeproj -scheme Defaults-macOS
2 changes: 1 addition & 1 deletion Defaults.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Defaults'
s.version = '3.0.0'
s.version = '3.1.0'
s.summary = 'Swifty and modern UserDefaults'
s.license = 'MIT'
s.homepage = 'https://github.com/sindresorhus/Defaults'
Expand Down
8 changes: 4 additions & 4 deletions Defaults.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -899,7 +899,7 @@
APPLICATION_EXTENSION_API_ONLY = YES;
CODE_SIGN_IDENTITY = "-";
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 2;
CURRENT_PROJECT_VERSION = 3;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
Expand All @@ -913,7 +913,7 @@
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.12;
MARKETING_VERSION = 3.0.0;
MARKETING_VERSION = 3.1.0;
PRODUCT_BUNDLE_IDENTIFIER = "com.Defaults.Defaults-macOS";
PRODUCT_NAME = Defaults;
SDKROOT = macosx;
Expand All @@ -927,7 +927,7 @@
APPLICATION_EXTENSION_API_ONLY = YES;
CODE_SIGN_IDENTITY = "-";
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 2;
CURRENT_PROJECT_VERSION = 3;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
Expand All @@ -941,7 +941,7 @@
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.12;
MARKETING_VERSION = 3.0.0;
MARKETING_VERSION = 3.1.0;
PRODUCT_BUNDLE_IDENTIFIER = "com.Defaults.Defaults-macOS";
PRODUCT_NAME = Defaults;
SDKROOT = macosx;
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ This package is used in production by apps like [Gifski](https://github.com/sind
- **NSSecureCoding support:** You can store any [NSSecureCoding](https://developer.apple.com/documentation/foundation/nssecurecoding) value.
- **Debuggable:** The data is stored as JSON-serialized values.
- **Observation:** Observe changes to keys.
- **Lightweight:** It's only ~300 lines of code.
- **Lightweight:** It's only some hundred lines of code.


## Compatibility
Expand All @@ -28,7 +28,7 @@ This package is used in production by apps like [Gifski](https://github.com/sind
#### SwiftPM

```swift
.package(url: "https://github.com/sindresorhus/Defaults", from: "3.0.0")
.package(url: "https://github.com/sindresorhus/Defaults", from: "3.1.0")
```

#### Carthage
Expand Down

0 comments on commit 9ce53ee

Please sign in to comment.