Skip to content

Commit

Permalink
Merge pull request #10 from ronjunevaldoz/develop
Browse files Browse the repository at this point in the history
v1.0.2-dev07
  • Loading branch information
ronjunevaldoz authored Jan 4, 2025
2 parents f7c9377 + 056207a commit effd9d0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v1.0.2-dev07]

### Changes
- Update to ktor 3.0.1 and kotlin 2.1.0

## [v1.0.2-dev06]

### Fixes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ plugins {

allprojects {
group = "io.github.ronjunevaldoz"
version = "1.0.2-dev06"
version = "1.0.2-dev07"
}

mavenPublishing {
coordinates(
groupId = "io.github.ronjunevaldoz",
artifactId = "paymongo-kotlin",
version = "1.0.2-dev06"
version = "1.0.2-dev07"
)

pom {
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ android-compileSdk = "34"
android-minSdk = "24"
android-targetSdk = "34"
# Kotlin and related libraries
kotlin = "2.0.20"
kotlin = "2.1.0"
kotlinxSerialization = "1.7.2"
kotlinxCoroutine = "1.9.0-RC"
compose-plugin = "1.7.0-alpha03"
# Ktor libraries
ktor = "3.0.0-rc-1"
ktor = "3.0.1"
# Logging library
logback = "1.5.6"
# Stately concurrent collections for WASM and JS
Expand Down
4 changes: 2 additions & 2 deletions samples/demo/src/commonMain/kotlin/App.kt
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ fun App() {
client.getLink("link_WrnsXCjNtdv8wfRDwcs6APjy")
}.fold(
onSuccess = {
link = it
link = it.data
},
onFailure = {
it.printStackTrace()
Expand All @@ -89,7 +89,7 @@ fun App() {
client.getLink("NJUgWgz")
}.fold(
onSuccess = {
link = it
link = it.data
},
onFailure = {
it.printStackTrace()
Expand Down

0 comments on commit effd9d0

Please sign in to comment.