diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b4b8d0f..95a37e3 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.1.1" + ".": "3.2.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 38bb65b..2084cef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to the LaunchDarkly Swift EventSource library will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [3.2.0](https://github.com/launchdarkly/swift-eventsource/compare/3.1.1...3.2.0) (2023-12-29) + + +### Features + +* Add Compilation & Testing On Windows ([#68](https://github.com/launchdarkly/swift-eventsource/issues/68)) ([ac5f18c](https://github.com/launchdarkly/swift-eventsource/commit/ac5f18ccb5b197bbc9f37f9f799017a397eee43e)) + ## [3.1.1] - 2023-06-12 ### Fixed: - Per the SSE spec, an HTTP 204 will now halt retry attempts by default. diff --git a/LDSwiftEventSource.podspec b/LDSwiftEventSource.podspec index 9067c63..4d8cdca 100644 --- a/LDSwiftEventSource.podspec +++ b/LDSwiftEventSource.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "LDSwiftEventSource" - s.version = "3.1.1" # x-release-please-version + s.version = "3.2.0" # x-release-please-version s.summary = "Swift EventSource library" s.homepage = "https://github.com/launchdarkly/swift-eventsource" s.license = { :type => "Apache License, Version 2.0", :file => "LICENSE.txt" } diff --git a/LDSwiftEventSource.xcodeproj/project.pbxproj b/LDSwiftEventSource.xcodeproj/project.pbxproj index 0eb1635..dbb8026 100644 --- a/LDSwiftEventSource.xcodeproj/project.pbxproj +++ b/LDSwiftEventSource.xcodeproj/project.pbxproj @@ -445,7 +445,7 @@ CODE_SIGN_STYLE = Automatic; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 3.0.0; - DYLIB_CURRENT_VERSION = 3.1.1; + DYLIB_CURRENT_VERSION = 3.2.0; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_BITCODE = YES; "ENABLE_BITCODE[sdk=macosx*]" = NO; @@ -461,7 +461,7 @@ "@executable_path/../Frameworks", "@loader_path/Frameworks", ); - MARKETING_VERSION = 3.1.1; + MARKETING_VERSION = 3.2.0; SKIP_INSTALL = YES; "TARGETED_DEVICE_FAMILY[sdk=appletvos*]" = 3; "TARGETED_DEVICE_FAMILY[sdk=appletvsimulator*]" = 3; @@ -479,7 +479,7 @@ CODE_SIGN_STYLE = Automatic; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 3.0.0; - DYLIB_CURRENT_VERSION = 3.1.1; + DYLIB_CURRENT_VERSION = 3.2.0; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_BITCODE = YES; "ENABLE_BITCODE[sdk=macosx*]" = NO; @@ -495,7 +495,7 @@ "@executable_path/../Frameworks", "@loader_path/Frameworks", ); - MARKETING_VERSION = 3.1.1; + MARKETING_VERSION = 3.2.0; SKIP_INSTALL = YES; "TARGETED_DEVICE_FAMILY[sdk=appletvos*]" = 3; "TARGETED_DEVICE_FAMILY[sdk=appletvsimulator*]" = 3; diff --git a/README.md b/README.md index dd85fa1..1d9e17c 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ LDSwiftEventSource is a cross platform implementation of the [EventSource specif To use the [CocoaPods](https://cocoapods.org) dependency manager to integrate LDSwiftEventSource into your Xcode project, specify it in your `Podfile`: ```ruby -pod 'LDSwiftEventSource', '~> 3.1' +pod 'LDSwiftEventSource', '~> 3.2' ``` ### Carthage @@ -27,7 +27,7 @@ pod 'LDSwiftEventSource', '~> 3.1' To use the [Carthage](https://github.com/Carthage/Carthage) dependency manager to integrate LDSwiftEventSource into your Xcode project, specify it in your `Cartfile`: ```ogdl -github "LaunchDarkly/swift-eventsource" ~> 3.1 +github "LaunchDarkly/swift-eventsource" ~> 3.2 ``` ### Swift Package Manager @@ -41,7 +41,7 @@ To include LDSwiftEventSource in a Swift package, simply add it to the dependenc ```swift dependencies: [ - .package(url: "https://github.com/LaunchDarkly/swift-eventsource.git", .upToNextMajor(from: "3.1.1")) + .package(url: "https://github.com/LaunchDarkly/swift-eventsource.git", .upToNextMajor(from: "3.2.0")) ] ```