Skip to content

Commit

Permalink
bump dependencies, prepare for next version 0.4-beta1
Browse files Browse the repository at this point in the history
  • Loading branch information
pull-vert committed Apr 10, 2021
1 parent 8d02a81 commit 15288c6
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 14 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,6 @@ release {
// when version changes :
// -> execute ./gradlew wrapper, then delete .gradle directory, then execute ./gradlew wrapper again
tasks.wrapper {
gradleVersion = "6.7"
gradleVersion = "7.0"
distributionType = Wrapper.DistributionType.ALL
}
15 changes: 6 additions & 9 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
group=org.ufoss.kolog
version=0.4
version=0.4-beta1

# plugins
kotlinVersion=1.4.10
dokkaPluginVersion=1.4.10.2
kotlinVersion=1.4.32
dokkaPluginVersion=1.4.30
releasePluginVersion=2.8.1
androidLibraryPluginVersion=4.0.0
androidLibraryPluginVersion=4.1.0

# main
slf4jVersion=1.7.30

# tests
# https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api
junitVersion=5.7.0
junitVersion=5.7.1
logbackVersion=1.2.3
kotlinxCoroutinesVersion=1.4.0
kotlinxCoroutinesVersion=1.4.3

# multiplatform
kotlin.mpp.enableGranularSourceSetsMetadata=true
Expand All @@ -27,8 +27,5 @@ android.useAndroidX=true
org.gradle.vfs.watch=true
kotlin.code.style=official
org.gradle.warning.mode=all
# Workaround for Bintray treating .sha512 files as artifacts
# https://github.com/gradle/gradle/issues/11412
systemProp.org.gradle.internal.publish.checksums.insecure=true
# to solve java.lang.OutOfMemoryError: Metaspace
org.gradle.jvmargs=-XX:MaxMetaspaceSize=512m
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion kolog/src/androidMain/kotlin/org/ufoss/kolog/Logger.kt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import android.util.Log
*/
@Suppress("NON_PUBLIC_PRIMARY_CONSTRUCTOR_OF_INLINE_CLASS")
public actual inline class Logger @PublishedApi internal constructor(
private val parameter: Parameter
@PublishedApi internal val parameter: Parameter
) : LoggerProperties {
/**
* Companion object for [Logger] class that contains its constructor functions
Expand Down
2 changes: 1 addition & 1 deletion kolog/src/commonMain/kotlin/org/ufoss/kolog/Logger.kt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package org.ufoss.kolog

@Suppress("NON_PUBLIC_PRIMARY_CONSTRUCTOR_OF_INLINE_CLASS")
public expect inline class Logger internal constructor(
parameter: Parameter
internal val parameter: Parameter
): LoggerProperties {
/**
* Companion object for [Logger] class that contains its constructor functions
Expand Down
2 changes: 1 addition & 1 deletion kolog/src/iosMain/kotlin/org/ufoss/kolog/Logger.kt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import platform.Foundation.NSLog
*/
@Suppress("NON_PUBLIC_PRIMARY_CONSTRUCTOR_OF_INLINE_CLASS")
public actual inline class Logger @PublishedApi internal constructor(
private val parameter: Parameter
@PublishedApi internal val parameter: Parameter
) : LoggerProperties {
/**
* Companion object for [Logger] class that contains its constructor functions
Expand Down

0 comments on commit 15288c6

Please sign in to comment.