Skip to content

Commit f50e92d

Browse files
authored
prepare 3.1.0 release (#52) (#58)
## [3.1.0] - 2023-06-05 ### Changed: - Enforce TLS v1.2 as a required minimum. ### Fixed: - Fix re-entrancy issue with `start` command. (Thanks, [g-mark](#56)!)
1 parent 1980bcc commit f50e92d

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
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.0] - 2023-06-05
6+
### Changed:
7+
- Enforce TLS v1.2 as a required minimum.
8+
9+
### Fixed:
10+
- Fix re-entrancy issue with `start` command. (Thanks, [g-mark](https://github.com/launchdarkly/swift-eventsource/pull/56)!)
11+
512
## [3.0.0] - 2022-10-06
613
### Changed
714
- Dropped support for older versions in accordance with the new [Xcode 14 release](https://developer.apple.com/documentation/xcode-release-notes/xcode-14-release-notes).

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.0.0"
3+
s.version = "3.1.0"
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

+2-2
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@
461461
"@executable_path/../Frameworks",
462462
"@loader_path/Frameworks",
463463
);
464-
MARKETING_VERSION = 3.0.0;
464+
MARKETING_VERSION = 3.1.0;
465465
SKIP_INSTALL = YES;
466466
"TARGETED_DEVICE_FAMILY[sdk=appletvos*]" = 3;
467467
"TARGETED_DEVICE_FAMILY[sdk=appletvsimulator*]" = 3;
@@ -495,7 +495,7 @@
495495
"@executable_path/../Frameworks",
496496
"@loader_path/Frameworks",
497497
);
498-
MARKETING_VERSION = 3.0.0;
498+
MARKETING_VERSION = 3.1.0;
499499
SKIP_INSTALL = YES;
500500
"TARGETED_DEVICE_FAMILY[sdk=appletvos*]" = 3;
501501
"TARGETED_DEVICE_FAMILY[sdk=appletvsimulator*]" = 3;

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ LDSwiftEventSource is a cross platform implementation of the [EventSource specif
1919
To use the [CocoaPods](https://cocoapods.org) dependency manager to integrate LDSwiftEventSource into your Xcode project, specify it in your `Podfile`:
2020

2121
```ruby
22-
pod 'LDSwiftEventSource', '~> 3.0'
22+
pod 'LDSwiftEventSource', '~> 3.1'
2323
```
2424

2525
### Carthage
2626

2727
To use the [Carthage](https://github.com/Carthage/Carthage) dependency manager to integrate LDSwiftEventSource into your Xcode project, specify it in your `Cartfile`:
2828

2929
```ogdl
30-
github "LaunchDarkly/swift-eventsource" ~> 3.0
30+
github "LaunchDarkly/swift-eventsource" ~> 3.1
3131
```
3232

3333
### Swift Package Manager
@@ -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.0.0"))
43+
.package(url: "https://github.com/LaunchDarkly/swift-eventsource.git", .upToNextMajor(from: "3.1.0"))
4444
]
4545
```
4646

0 commit comments

Comments
 (0)