From 3d45eacab476f9bb2c58662cfb2d35088140b25b Mon Sep 17 00:00:00 2001 From: "Matthew M. Keeler" Date: Mon, 12 Jun 2023 12:19:39 -0400 Subject: [PATCH] prepare 3.1.1 release (#60) ## [3.1.1] - 2023-06-12 ### Fixed: - Per the SSE spec, an HTTP 204 will now halt retry attempts by default. --- CHANGELOG.md | 4 ++++ LDSwiftEventSource.podspec | 2 +- LDSwiftEventSource.xcodeproj/project.pbxproj | 8 ++++---- README.md | 2 +- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 064a713..38bb65b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ 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.1.1] - 2023-06-12 +### Fixed: +- Per the SSE spec, an HTTP 204 will now halt retry attempts by default. + ## [3.1.0] - 2023-06-05 ### Changed: - Enforce TLS v1.2 as a required minimum. diff --git a/LDSwiftEventSource.podspec b/LDSwiftEventSource.podspec index 3de18be..7ca9bba 100644 --- a/LDSwiftEventSource.podspec +++ b/LDSwiftEventSource.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "LDSwiftEventSource" - s.version = "3.1.0" + s.version = "3.1.1" 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 aec6506..0eb1635 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.0.0; + DYLIB_CURRENT_VERSION = 3.1.1; 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.0; + MARKETING_VERSION = 3.1.1; 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.0.0; + DYLIB_CURRENT_VERSION = 3.1.1; 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.0; + MARKETING_VERSION = 3.1.1; SKIP_INSTALL = YES; "TARGETED_DEVICE_FAMILY[sdk=appletvos*]" = 3; "TARGETED_DEVICE_FAMILY[sdk=appletvsimulator*]" = 3; diff --git a/README.md b/README.md index f539ad3..9d9f2b6 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,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.0")) + .package(url: "https://github.com/LaunchDarkly/swift-eventsource.git", .upToNextMajor(from: "3.1.1")) ] ```