Skip to content

Commit 3782466

Browse files
authored
Merge pull request #43 from launchdarkly/release-1.3.1
2 parents 0d914ee + 6790990 commit 3782466

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
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+
## [1.3.1] - 2022-03-11
6+
### Fixed
7+
- Fixed a race condition that could cause a crash when `stop()` is called when there is a pending reconnection attempt.
8+
59
## [1.3.0] - 2022-01-18
610
### Added
711
- Added the configuration option `urlSessionConfiguration` to `EventSource.Config` which allows setting the `URLSessionConfiguration` used by the `EventSource` to create `URLSession` instances.

LDSwiftEventSource.podspec

Lines changed: 1 addition & 1 deletion
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 = "1.3.0"
3+
s.version = "1.3.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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@
458458
"@executable_path/../Frameworks",
459459
"@loader_path/Frameworks",
460460
);
461-
MARKETING_VERSION = 1.3.0;
461+
MARKETING_VERSION = 1.3.1;
462462
SKIP_INSTALL = YES;
463463
"TARGETED_DEVICE_FAMILY[sdk=appletvos*]" = 3;
464464
"TARGETED_DEVICE_FAMILY[sdk=appletvsimulator*]" = 3;
@@ -492,7 +492,7 @@
492492
"@executable_path/../Frameworks",
493493
"@loader_path/Frameworks",
494494
);
495-
MARKETING_VERSION = 1.3.0;
495+
MARKETING_VERSION = 1.3.1;
496496
SKIP_INSTALL = YES;
497497
"TARGETED_DEVICE_FAMILY[sdk=appletvos*]" = 3;
498498
"TARGETED_DEVICE_FAMILY[sdk=appletvsimulator*]" = 3;

README.md

Lines changed: 1 addition & 1 deletion
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: "1.3.0"))
43+
.package(url: "https://github.com/LaunchDarkly/swift-eventsource.git", .upToNextMajor(from: "1.3.1"))
4444
]
4545
```
4646

0 commit comments

Comments
 (0)