Skip to content

Commit

Permalink
Bump up dependencies versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
ndawod committed Feb 28, 2024
1 parent 28a4cc2 commit 8f9910f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
1 change: 1 addition & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ ktlint_experimental = enabled
ktlint_standard_function-signature = enabled
ktlint_standard_class-signature = enabled
ktlint_standard_chain-method-continuation = disabled
ktlint_standard_indent = disabled
ktlint_standard_multiline-expression-wrapping = disabled
ktlint_standard_string-template-indent = disabled
ktlint_function_signature_wrapping_rule_always_with_minimum_parameters = 1
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ Description: Auxiliary methods and functions for the Kotlin programming language

This documents the changes between versions:

3.6.5 (February 28, 2024)
Bump up dependencies versions.

3.6.4 (January 22, 2024)
Bump up dependencies versions.

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
*/

group = 'org.noordawod.kotlin.core'
version = '3.6.4'
version = '3.6.5'
description = 'Auxiliary methods and functions for the Kotlin programming language.'
buildDir = 'build'

Expand Down
8 changes: 4 additions & 4 deletions gradle/config.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@
ext.encoding = 'UTF-8'
ext.versions = [
jdk: JavaVersion.VERSION_11,
plugin_versions_outdated: '0.50.0',
plugin_detekt: '1.23.4',
plugin_versions_outdated: '0.51.0',
plugin_detekt: '1.23.5',
plugin_ktlint: '12.1.0',
ktlint: '0.51.0-FINAL',
dagger: '2.50',
dagger: '2.51',
kotlin: '1.8.21', // https://kotlinlang.org/docs/releases.html#release-details
kotlin_coroutines: '1.7.3',
kotlin_serialization: '1.6.2',
kotlin_serialization: '1.6.3',
uribuilder_tiny: '2.7.1',
seruco_base62: '0.1.3',
auth0_jwt: '4.4.0',
Expand Down
4 changes: 2 additions & 2 deletions src/main/kotlin/org/noordawod/kotlin/core/extension/Locale.kt
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ fun java.util.Locale.uppercase(): String = stringify().uppercase()
fun java.util.Locale.getNewLanguage(): String = language.getNewLanguage()

/**
* Returns the value of [java.util.Locale.toString] where the old language codes are converted to their
* new variations.
* Returns the value of [java.util.Locale.toString] where the old language codes
* are converted to their new variations.
*/
fun java.util.Locale.toNewString(): String {
val localeString = toString()
Expand Down

0 comments on commit 8f9910f

Please sign in to comment.