File tree 3 files changed +13
-2
lines changed
3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8
8
## [ Unreleased]
9
9
tbd
10
10
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
+
11
22
## [ 1.0.2]
12
23
### Fixed
13
24
- Fix a bug where target names were not always resolved correctly
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ The plugin is published on Maven central. Add it to the `plugins` block in the G
17
17
18
18
``` kotlin
19
19
plugins {
20
- id(" com.chromaticnoise.multiplatform-swiftpackage" ) version " 1 .0.2 "
20
+ id(" com.chromaticnoise.multiplatform-swiftpackage" ) version " 2 .0.0 "
21
21
}
22
22
```
23
23
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ plugins {
5
5
signing
6
6
}
7
7
8
- version = " 1 .0.2 "
8
+ version = " 2 .0.0 "
9
9
10
10
repositories {
11
11
jcenter()
You can’t perform that action at this time.
0 commit comments