Skip to content

Commit f6c1146

Browse files
authored
Release 0.5.0 (#7)
## [0.5.0] - 2020-07-14 ### Changed - Default `LDSwiftEventSource` product defined for the SwiftPM package is now explicitly a dynamic product. An explicitly static product is now available as `LDSwiftEventSourceStatic`.
1 parent 6290264 commit f6c1146

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
shell: /bin/bash --login -eo pipefail
66

77
macos:
8-
xcode: '11.4.0'
8+
xcode: '11.5.0'
99

1010
steps:
1111
- checkout

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+
## [0.5.0] - 2020-07-14
6+
### Changed
7+
- Default `LDSwiftEventSource` product defined for the SwiftPM package is now explicitly a dynamic product. An explicitly static product is now available as `LDSwiftEventSourceStatic`.
8+
59
## [0.4.0] - 2020-07-13
610
### Changed
711
- Converted build system to use a single target to produce a universal framework, rather than separate targets for each platform that share a product name. This is to prevent issues with `xcodebuild` resolving the build scheme to an incorrect platform when building dependent packages with 'Find Implicit Dependencies' enabled. This is due to a bug in `xcodebuild`, for more information see [http://www.openradar.me/20490378](http://www.openradar.me/20490378) and [http://www.openradar.me/22008701](http://www.openradar.me/22008701).

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 = "0.4.0"
3+
s.version = "0.5.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" }

Package.swift

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ let package = Package(
1414
// Products define the executables and libraries produced by a package, and make them visible to other packages.
1515
.library(
1616
name: "LDSwiftEventSource",
17+
type: .dynamic,
18+
targets: ["LDSwiftEventSource"]),
19+
.library(
20+
name: "LDSwiftEventSourceStatic",
21+
type: .static,
1722
targets: ["LDSwiftEventSource"]),
1823
],
1924
dependencies: [],

0 commit comments

Comments
 (0)