0.11.1-kotlin-1.6.10

This commit is contained in:
Alexander Nozik 2022-01-23 15:51:34 +03:00
parent 63106cd3aa
commit 7a9cf427f7
No known key found for this signature in database
GPG Key ID: F7FCF2DD25C71357
4 changed files with 18 additions and 10 deletions

View File

@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Added
### Changed
### Deprecated
### Removed
### Fixed
### Security
## [0.11.1-kotlin-1.6.10]
### Added
- Default templates for README and ARTIFACT
### Changed
@ -17,6 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Removed
### Fixed
- JS publication sources jar
### 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
- Change version scheme to `<version>-kotlin-<kotlin version>`
### Deprecated
### Removed
### Fixed
- remove `nativeMain` dependency from `nativeTest`
### Security
## [0.10.4]
### Changed
- Kotlin 1.6

View File

@ -136,6 +136,7 @@ afterEvaluate {
artifact(javadocsJar)
pom {
name.set(project.name)
description.set(project.description)
url.set(vcs)

View File

@ -1,5 +1,5 @@
[versions]
tools = "0.11.0-kotlin-1.6.10"
tools = "0.11.1-kotlin-1.6.10"
kotlin = "1.6.10"
atomicfu = "0.17.0"
binary-compatibility-validator = "0.8.0"

View File

@ -27,9 +27,8 @@ internal fun Project.setupPublication(mavenPomConfiguration: MavenPom.() -> Unit
val sourcesJar by tasks.creating(Jar::class) {
archiveClassifier.set("sources")
kotlin.sourceSets.all {
from(kotlin)
kotlin.sourceSets.forEach {
from(it.kotlin)
}
}
afterEvaluate {