Skip to content

Commit 23560ce

Browse files
github-actions[bot]LaunchDarklyReleaseBot
and
LaunchDarklyReleaseBot
authored
chore(main): release 3.2.0 (#73)
🤖 I have created a release *beep* *boop* --- ## [3.2.0](3.1.1...3.2.0) (2023-12-29) ### Features * Add Compilation & Testing On Windows ([#68](#68)) ([ac5f18c](ac5f18c)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: LaunchDarklyReleaseBot <[email protected]>
1 parent b5c1e27 commit 23560ce

File tree

5 files changed

+16
-9
lines changed

5 files changed

+16
-9
lines changed

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "3.1.1"
2+
".": "3.2.0"
33
}

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.2.0](https://github.com/launchdarkly/swift-eventsource/compare/3.1.1...3.2.0) (2023-12-29)
6+
7+
8+
### Features
9+
10+
* Add Compilation & Testing On Windows ([#68](https://github.com/launchdarkly/swift-eventsource/issues/68)) ([ac5f18c](https://github.com/launchdarkly/swift-eventsource/commit/ac5f18ccb5b197bbc9f37f9f799017a397eee43e))
11+
512
## [3.1.1] - 2023-06-12
613
### Fixed:
714
- Per the SSE spec, an HTTP 204 will now halt retry attempts by default.

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.1" # x-release-please-version
3+
s.version = "3.2.0" # x-release-please-version
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.1.1;
448+
DYLIB_CURRENT_VERSION = 3.2.0;
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.1;
464+
MARKETING_VERSION = 3.2.0;
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.1.1;
482+
DYLIB_CURRENT_VERSION = 3.2.0;
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.1;
498+
MARKETING_VERSION = 3.2.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.1'
22+
pod 'LDSwiftEventSource', '~> 3.2'
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.1
30+
github "LaunchDarkly/swift-eventsource" ~> 3.2
3131
```
3232

3333
### Swift Package Manager
@@ -41,7 +41,7 @@ To include LDSwiftEventSource in a Swift package, simply add it to the dependenc
4141
<!-- x-release-please-start-version -->
4242
```swift
4343
dependencies: [
44-
.package(url: "https://github.com/LaunchDarkly/swift-eventsource.git", .upToNextMajor(from: "3.1.1"))
44+
.package(url: "https://github.com/LaunchDarkly/swift-eventsource.git", .upToNextMajor(from: "3.2.0"))
4545
]
4646
```
4747
<!-- x-release-please-end -->

0 commit comments

Comments
 (0)