Skip to content

Commit 8e8372f

Browse files
committed
change method name to be multiplatform friendly
1 parent 6955b01 commit 8e8372f

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

ChangeLog.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 1.6.0 + 1.6.10
2+
* Add Markers support for multiplatform [#48](https://github.com/MicroUtils/kotlin-logging/pull/48)
3+
* Improvement to version upload automation [#46](https://github.com/MicroUtils/kotlin-logging/issues/46)
4+
15
# 1.5.9
26
* Back to Kotlin 1.2.60, created 3 artifacts on maven central.
37

build.gradle

+13-2
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ buildscript {
88

99
dependencies {
1010
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
11-
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
11+
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
1212
}
1313
}
1414

1515
allprojects {
1616
group 'io.github.microutils'
17-
version '1.5.6'
17+
version '1.6.10'
1818

1919
repositories {
2020
mavenCentral()
@@ -110,6 +110,7 @@ subprojects {
110110
key = 'mykey' //https://bintray.com/profile/edit
111111
// project.hasProperty('bintrayApiKey') ? project.property('bintrayApiKey') : System.getenv('BINTRAY_API_KEY')
112112
publications = ['mavenProject']
113+
publish = true //[Default: false] Whether version should be auto published after an upload
113114
pkg {
114115
repo = 'kotlin-logging'
115116
name = 'kotlin-logging'
@@ -120,10 +121,20 @@ subprojects {
120121
issueTrackerUrl = 'https://github.com/MicroUtils/kotlin-logging/issues'
121122

122123
githubRepo = 'MicroUtils/kotlin-logging'
124+
githubReleaseNotesFile = 'ChangeLog.md'
123125
version {
124126
name = project.version
125127
desc = "kotlin-logging - Lightweight logging framework for Kotlin"
126128
released = new Date()
129+
gpg {
130+
sign = true //Determines whether to GPG sign the files. The default is false
131+
}
132+
mavenCentralSync {
133+
sync = true //[Default: true] Determines whether to sync the version to Maven Central.
134+
user = 'token' //OSS user token: mandatory
135+
password = 'pass' //OSS user password: mandatory
136+
close = '1' //Optional property. By default the staging repository is closed and artifacts are released to Maven Central. You can optionally turn this behaviour off (by puting 0 as value) and release the version manually.
137+
}
127138
}
128139
}
129140
}

0 commit comments

Comments
 (0)