Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
adonese committed Dec 3, 2023
1 parent 52db48b commit ab05e76
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=23.11.1
version=23.11.3
2 changes: 1 addition & 1 deletion lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ publishing {
repositories {
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/tutipay/java-sdk")
url = uri("https://maven.pkg.github.com/noebs/sdk")
credentials {
username = System.getenv("USERNAME")
password = System.getenv("TOKEN")
Expand Down
2 changes: 1 addition & 1 deletion lib/src/main/java/com/tuti/api/TutiApiClient.kt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class TutiApiClient {
"MFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBANx4gKYSMv3CrWWsxdPfxDxFvl+Is/0kc1dvMI1yNWDXI3AgdI4127KMUOv7gmwZ6SnRsHX/KAM0IPRe0+Sa0vMCAwEAAQ=="

val entertainmentServer = "https://plus.2t.sd/"
val dapiServer = "https://blue-violet-2528.fly.dev/"
val dapiServer = "https://dapi.nil.sd/"

@Deprecated("")
constructor(isDevelopment: Boolean) {
Expand Down
2 changes: 1 addition & 1 deletion lib/src/main/java/com/tuti/model/Operations.kt
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,5 @@ object Operations {
const val PAYMENT_REQUEST = "payment_request"
// https://blue-violet-2528.fly.dev/transactions
const val DAPI_GET_TRANSACTIONS = "transactions"
const val NOEBS_WALLET_BALANCE = "balance"
const val NOEBS_WALLET_BALANCE = "noebs-balance"
}
2 changes: 1 addition & 1 deletion lib/src/test/java/com/tuti/api/TutiApiClientTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ internal class TutiApiClientTest {
})

// Wait for the operation to complete or timeout
val callCompleted = latch.await(5, TimeUnit.SECONDS)
val callCompleted = latch.await(10, TimeUnit.SECONDS)

// Assertions
if (callCompleted) {
Expand Down

0 comments on commit ab05e76

Please sign in to comment.