From 95d0e877130740877b824f9900a28c6afb012315 Mon Sep 17 00:00:00 2001 From: Adam Lickel Date: Tue, 25 Oct 2022 10:50:13 -0700 Subject: [PATCH] Bump versions --- FetchRequests.podspec | 2 +- FetchRequests.xcodeproj/project.pbxproj | 4 ++-- README.md | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/FetchRequests.podspec b/FetchRequests.podspec index 4cfd17d..5155288 100644 --- a/FetchRequests.podspec +++ b/FetchRequests.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'FetchRequests' - s.version = '4.0.4' + s.version = '5.0.0' s.license = 'MIT' s.summary = 'NSFetchedResultsController inspired eventing' s.homepage = 'https://github.com/square/FetchRequests' diff --git a/FetchRequests.xcodeproj/project.pbxproj b/FetchRequests.xcodeproj/project.pbxproj index 4002a56..f5e18b2 100644 --- a/FetchRequests.xcodeproj/project.pbxproj +++ b/FetchRequests.xcodeproj/project.pbxproj @@ -1017,7 +1017,7 @@ INFOPLIST_FILE = FetchRequests/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 13.0; MACOSX_DEPLOYMENT_TARGET = 10.15; - MARKETING_VERSION = 4.0; + MARKETING_VERSION = 5.0; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; ONLY_ACTIVE_ARCH = YES; @@ -1092,7 +1092,7 @@ INFOPLIST_FILE = FetchRequests/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 13.0; MACOSX_DEPLOYMENT_TARGET = 10.15; - MARKETING_VERSION = 4.0; + MARKETING_VERSION = 5.0; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; PRODUCT_BUNDLE_IDENTIFIER = com.crewapp.FetchRequests; diff --git a/README.md b/README.md index 1b5465b..a6d93f8 100644 --- a/README.md +++ b/README.md @@ -116,7 +116,7 @@ Otherwise we will use a [less efficient OrderedSet](https://github.com/square/Fe Install with [CocoaPods](http://cocoapods.org) by specifying the following in your `Podfile`: ```ruby -pod 'FetchRequests', '~> 4.0' +pod 'FetchRequests', '~> 5.0' ``` ### Carthage @@ -124,7 +124,7 @@ pod 'FetchRequests', '~> 4.0' Install with [Carthage](https://github.com/Carthage/Carthage) by specify the following in your `Cartfile`: ``` -github "square/FetchRequests" ~> 4.0 +github "square/FetchRequests" ~> 5.0 ``` ### Swift Package Manager @@ -133,7 +133,7 @@ Install with [Swift Package Manager](https://swift.org/package-manager/) by addi ```swift dependencies: [ - .package(url: "https://github.com/square/FetchRequests.git", from: "4.0.0") + .package(url: "https://github.com/square/FetchRequests.git", from: "5.0.0") ] ```