0.11.1-kotlin-1.6.10
This commit is contained in:
parent
63106cd3aa
commit
7a9cf427f7
20
CHANGELOG.md
20
CHANGELOG.md
@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
### Deprecated
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
### Security
|
||||||
|
|
||||||
|
## [0.11.1-kotlin-1.6.10]
|
||||||
|
### Added
|
||||||
- Default templates for README and ARTIFACT
|
- Default templates for README and ARTIFACT
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
@ -17,6 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
### Removed
|
### Removed
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
- JS publication sources jar
|
||||||
|
|
||||||
### Security
|
### Security
|
||||||
|
|
||||||
@ -29,15 +43,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
- Use indy lambdas by default #32
|
- Use indy lambdas by default #32
|
||||||
- Change version scheme to `<version>-kotlin-<kotlin version>`
|
- Change version scheme to `<version>-kotlin-<kotlin version>`
|
||||||
|
|
||||||
### Deprecated
|
|
||||||
|
|
||||||
### Removed
|
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- remove `nativeMain` dependency from `nativeTest`
|
- remove `nativeMain` dependency from `nativeTest`
|
||||||
|
|
||||||
### Security
|
|
||||||
|
|
||||||
## [0.10.4]
|
## [0.10.4]
|
||||||
### Changed
|
### Changed
|
||||||
- Kotlin 1.6
|
- Kotlin 1.6
|
||||||
|
@ -136,6 +136,7 @@ afterEvaluate {
|
|||||||
artifact(javadocsJar)
|
artifact(javadocsJar)
|
||||||
|
|
||||||
pom {
|
pom {
|
||||||
|
name.set(project.name)
|
||||||
description.set(project.description)
|
description.set(project.description)
|
||||||
url.set(vcs)
|
url.set(vcs)
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
[versions]
|
[versions]
|
||||||
tools = "0.11.0-kotlin-1.6.10"
|
tools = "0.11.1-kotlin-1.6.10"
|
||||||
kotlin = "1.6.10"
|
kotlin = "1.6.10"
|
||||||
atomicfu = "0.17.0"
|
atomicfu = "0.17.0"
|
||||||
binary-compatibility-validator = "0.8.0"
|
binary-compatibility-validator = "0.8.0"
|
||||||
|
@ -27,9 +27,8 @@ internal fun Project.setupPublication(mavenPomConfiguration: MavenPom.() -> Unit
|
|||||||
|
|
||||||
val sourcesJar by tasks.creating(Jar::class) {
|
val sourcesJar by tasks.creating(Jar::class) {
|
||||||
archiveClassifier.set("sources")
|
archiveClassifier.set("sources")
|
||||||
|
kotlin.sourceSets.forEach {
|
||||||
kotlin.sourceSets.all {
|
from(it.kotlin)
|
||||||
from(kotlin)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
afterEvaluate {
|
afterEvaluate {
|
||||||
|
Loading…
Reference in New Issue
Block a user