diff --git a/CHANGELOG.md b/CHANGELOG.md index 67c027b..0ed77bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 `-kotlin-` -### Deprecated - -### Removed - ### Fixed - remove `nativeMain` dependency from `nativeTest` -### Security - ## [0.10.4] ### Changed - Kotlin 1.6 diff --git a/build.gradle.kts b/build.gradle.kts index f968103..6335f51 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -136,6 +136,7 @@ afterEvaluate { artifact(javadocsJar) pom { + name.set(project.name) description.set(project.description) url.set(vcs) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 23f62d6..e1fa795 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -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" diff --git a/src/main/kotlin/ru/mipt/npm/gradle/internal/publishing.kt b/src/main/kotlin/ru/mipt/npm/gradle/internal/publishing.kt index 179b3e3..7699950 100644 --- a/src/main/kotlin/ru/mipt/npm/gradle/internal/publishing.kt +++ b/src/main/kotlin/ru/mipt/npm/gradle/internal/publishing.kt @@ -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 {