Skip to content

Commit 3d45eac

Browse files
authored
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.
1 parent e7d23e6 commit 3d45eac

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to the LaunchDarkly Swift EventSource library will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).
44

5+
## [3.1.1] - 2023-06-12
6+
### Fixed:
7+
- Per the SSE spec, an HTTP 204 will now halt retry attempts by default.
8+
59
## [3.1.0] - 2023-06-05
610
### Changed:
711
- Enforce TLS v1.2 as a required minimum.

LDSwiftEventSource.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "LDSwiftEventSource"
3-
s.version = "3.1.0"
3+
s.version = "3.1.1"
44
s.summary = "Swift EventSource library"
55
s.homepage = "https://github.com/launchdarkly/swift-eventsource"
66
s.license = { :type => "Apache License, Version 2.0", :file => "LICENSE.txt" }

LDSwiftEventSource.xcodeproj/project.pbxproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@
445445
CODE_SIGN_STYLE = Automatic;
446446
DEFINES_MODULE = YES;
447447
DYLIB_COMPATIBILITY_VERSION = 3.0.0;
448-
DYLIB_CURRENT_VERSION = 3.0.0;
448+
DYLIB_CURRENT_VERSION = 3.1.1;
449449
DYLIB_INSTALL_NAME_BASE = "@rpath";
450450
ENABLE_BITCODE = YES;
451451
"ENABLE_BITCODE[sdk=macosx*]" = NO;
@@ -461,7 +461,7 @@
461461
"@executable_path/../Frameworks",
462462
"@loader_path/Frameworks",
463463
);
464-
MARKETING_VERSION = 3.1.0;
464+
MARKETING_VERSION = 3.1.1;
465465
SKIP_INSTALL = YES;
466466
"TARGETED_DEVICE_FAMILY[sdk=appletvos*]" = 3;
467467
"TARGETED_DEVICE_FAMILY[sdk=appletvsimulator*]" = 3;
@@ -479,7 +479,7 @@
479479
CODE_SIGN_STYLE = Automatic;
480480
DEFINES_MODULE = YES;
481481
DYLIB_COMPATIBILITY_VERSION = 3.0.0;
482-
DYLIB_CURRENT_VERSION = 3.0.0;
482+
DYLIB_CURRENT_VERSION = 3.1.1;
483483
DYLIB_INSTALL_NAME_BASE = "@rpath";
484484
ENABLE_BITCODE = YES;
485485
"ENABLE_BITCODE[sdk=macosx*]" = NO;
@@ -495,7 +495,7 @@
495495
"@executable_path/../Frameworks",
496496
"@loader_path/Frameworks",
497497
);
498-
MARKETING_VERSION = 3.1.0;
498+
MARKETING_VERSION = 3.1.1;
499499
SKIP_INSTALL = YES;
500500
"TARGETED_DEVICE_FAMILY[sdk=appletvos*]" = 3;
501501
"TARGETED_DEVICE_FAMILY[sdk=appletvsimulator*]" = 3;

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ To include LDSwiftEventSource in a Swift package, simply add it to the dependenc
4040

4141
```swift
4242
dependencies: [
43-
.package(url: "https://github.com/LaunchDarkly/swift-eventsource.git", .upToNextMajor(from: "3.1.0"))
43+
.package(url: "https://github.com/LaunchDarkly/swift-eventsource.git", .upToNextMajor(from: "3.1.1"))
4444
]
4545
```
4646

0 commit comments

Comments
 (0)