From 9ce53eee2e5d96e57b0763b2d2507859947863a2 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Wed, 30 Oct 2019 19:06:41 +0700 Subject: [PATCH] 3.1.0 --- .travis.yml | 2 +- Defaults.podspec | 2 +- Defaults.xcodeproj/project.pbxproj | 8 ++++---- readme.md | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 42b79d1..3f6646c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,3 @@ language: swift -osx_image: xcode11 +osx_image: xcode11.2 script: xcodebuild test -project Defaults.xcodeproj -scheme Defaults-macOS diff --git a/Defaults.podspec b/Defaults.podspec index 5276ac3..763a378 100644 --- a/Defaults.podspec +++ b/Defaults.podspec @@ -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' diff --git a/Defaults.xcodeproj/project.pbxproj b/Defaults.xcodeproj/project.pbxproj index 7df1ea8..e0da315 100644 --- a/Defaults.xcodeproj/project.pbxproj +++ b/Defaults.xcodeproj/project.pbxproj @@ -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; @@ -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; @@ -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; @@ -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; diff --git a/readme.md b/readme.md index 8b19ca0..d550cf8 100644 --- a/readme.md +++ b/readme.md @@ -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 @@ -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