Skip to content

Commit 827184c

Browse files
committed
Release 2.0.0
1 parent 5fa5ef8 commit 827184c

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
## [Unreleased]
99
tbd
1010

11+
## [2.0.0]
12+
### Added
13+
- You can now declare the name of the Swift package [#5](https://github.com/ge-org/multiplatform-swiftpackage/pull/5).
14+
Thanks for the collaboration [@JUSTINMKAUFMAN](https://github.com/JUSTINMKAUFMAN)
15+
```kotlin
16+
packageName("MyAwesomeKit")
17+
```
18+
19+
### Changed
20+
- BREAKING: By default the name of the Swift package is now the base name of the framework instead of the name of the project.
21+
1122
## [1.0.2]
1223
### Fixed
1324
- Fix a bug where target names were not always resolved correctly

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The plugin is published on Maven central. Add it to the `plugins` block in the G
1717

1818
```kotlin
1919
plugins {
20-
id("com.chromaticnoise.multiplatform-swiftpackage") version "1.0.2"
20+
id("com.chromaticnoise.multiplatform-swiftpackage") version "2.0.0"
2121
}
2222
```
2323

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
signing
66
}
77

8-
version = "1.0.2"
8+
version = "2.0.0"
99

1010
repositories {
1111
jcenter()

0 commit comments

Comments
 (0)