Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Automated] Sync main after 1.3.0 release #68

Merged
merged 5 commits into from
May 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ballerina/Ballerina.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ graalvmCompatible = true
groupId = "io.ballerina.stdlib"
artifactId = "persist.googlesheets-native"
version = "1.3.0"
path = "../native/build/libs/persist.googlesheets-native-1.3.0-SNAPSHOT.jar"
path = "../native/build/libs/persist.googlesheets-native-1.3.0.jar"

[[platform.java17.dependency]]
groupId = "io.ballerina.stdlib"
artifactId = "persist-native"
version = "1.3.0"
path = "./lib/persist-native-1.3.0-20240409-100100-594c874.jar"
path = "./lib/persist-native-1.3.0.jar"
6 changes: 5 additions & 1 deletion ballerina/Dependencies.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

[ballerina]
dependencies-toml-version = "2"
distribution-version = "2201.9.0-20240405-165800-4b163f78"
distribution-version = "2201.9.0"

[[package]]
org = "ballerina"
Expand Down Expand Up @@ -260,6 +260,9 @@ dependencies = [
{org = "ballerina", name = "io"},
{org = "ballerina", name = "jballerina.java"}
]
modules = [
{org = "ballerina", packageName = "os", moduleName = "os"}
]

[[package]]
org = "ballerina"
Expand Down Expand Up @@ -363,6 +366,7 @@ dependencies = [
{org = "ballerina", name = "jballerina.java"},
{org = "ballerina", name = "lang.regexp"},
{org = "ballerina", name = "lang.runtime"},
{org = "ballerina", name = "os"},
{org = "ballerina", name = "persist"},
{org = "ballerina", name = "test"},
{org = "ballerina", name = "time"},
Expand Down
26 changes: 13 additions & 13 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group=io.ballerina.stdlib
version=1.3.0-SNAPSHOT
version=1.3.1-SNAPSHOT

puppycrawlCheckstyleVersion=10.12.1
checkstyleToolVersion=10.12.1
Expand All @@ -11,7 +11,7 @@ testngVersion=7.6.1
gsonVersion=2.10
ballerinaGradlePluginVersion=2.0.1

ballerinaLangVersion=2201.9.0-20240419-152500-bd530dd2
ballerinaLangVersion=2201.9.0

# Direct Dependencies

Expand All @@ -28,35 +28,35 @@ stdlibOsVersion=1.8.0
stdlibFileVersion=1.9.0

# Level 05
stdlibHttpVersion=2.11.0-20240419-221600-aa2f91a
stdlibHttpVersion=2.11.0

# Level 08
stdlibPersistVersion=1.3.0-20240419-184000-8f2bc69
stdlibPersistVersion=1.3.0

# Ballerinax Observer
observeVersion=1.2.3-20240408-194900-a0e331f
observeInternalVersion=1.2.2-20240408-195500-1436319
observeVersion=1.2.3
observeInternalVersion=1.2.2

# Transitive Dependencies
# Level 01
stdlibConstraintVersion=1.5.0

#Level 02
stdlibCryptoVersion=2.7.0-20240419-184200-7bc2693
stdlibCryptoVersion=2.7.0
stdlibTaskVersion=2.5.0

# Level 03
stdlibCacheVersion=3.8.0-20240409-101100-e2d7f4e
stdlibCacheVersion=3.8.0
stdlibMimeVersion=2.9.0
stdlibUuidVersion=1.8.0-20240419-205800-699c1b6
stdlibUuidVersion=1.8.0

# Level 04
stdlibAuthVersion=2.11.0-20240419-212200-83c312b
stdlibJwtVersion=2.11.0-20240419-212200-853ba89
stdlibOAuth2Version=2.11.0-20240419-212300-79a26ae
stdlibAuthVersion=2.11.0
stdlibJwtVersion=2.11.0
stdlibOAuth2Version=2.11.0

# Level 06
stdlibTransactionVersion=1.9.0-20240420-020300-e5fd3f0
stdlibTransactionVersion=1.9.0

# Connectors
googleSheetsConnector=3.5.0
Expand Down
Loading