Skip to content

Commit

Permalink
Merge pull request #424 from kalaiyarasiganeshalingam/main
Browse files Browse the repository at this point in the history
Mark GraalVM compatibility
  • Loading branch information
TharmiganK committed Jun 15, 2023
2 parents 13600c7 + 29ec526 commit 07dba2e
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 12 deletions.
7 changes: 5 additions & 2 deletions ballerina/Ballerina.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
[package]
org = "ballerina"
name = "uuid"
version = "1.5.1"
version = "1.6.0"
authors = ["Ballerina"]
keywords = ["version", "unique"]
repository = "https://github.com/ballerina-platform/module-ballerina-uuid"
icon = "icon.png"
license = ["Apache-2.0"]
distribution = "2201.5.0"
distribution = "2201.7.0"

[platform.java11]
graalvmCompatible = true
20 changes: 15 additions & 5 deletions ballerina/Dependencies.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@

[ballerina]
dependencies-toml-version = "2"
distribution-version = "2201.5.0"
distribution-version = "2201.6.0-20230614-102000-d1aade7d"

[[package]]
org = "ballerina"
name = "crypto"
version = "2.3.1"
version = "2.4.0"
dependencies = [
{org = "ballerina", name = "jballerina.java"},
{org = "ballerina", name = "time"}
Expand All @@ -36,6 +36,15 @@ dependencies = [
{org = "ballerina", name = "lang.object"}
]

[[package]]
org = "ballerina"
name = "lang.error"
version = "0.0.0"
scope = "testOnly"
dependencies = [
{org = "ballerina", name = "jballerina.java"}
]

[[package]]
org = "ballerina"
name = "lang.int"
Expand All @@ -60,7 +69,8 @@ name = "test"
version = "0.0.0"
scope = "testOnly"
dependencies = [
{org = "ballerina", name = "jballerina.java"}
{org = "ballerina", name = "jballerina.java"},
{org = "ballerina", name = "lang.error"}
]
modules = [
{org = "ballerina", packageName = "test", moduleName = "test"}
Expand All @@ -69,7 +79,7 @@ modules = [
[[package]]
org = "ballerina"
name = "time"
version = "2.2.5"
version = "2.3.0"
dependencies = [
{org = "ballerina", name = "jballerina.java"}
]
Expand All @@ -80,7 +90,7 @@ modules = [
[[package]]
org = "ballerina"
name = "uuid"
version = "1.5.1"
version = "1.6.0"
dependencies = [
{org = "ballerina", name = "crypto"},
{org = "ballerina", name = "jballerina.java"},
Expand Down
5 changes: 4 additions & 1 deletion build-config/resources/Ballerina.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,7 @@ keywords = ["version", "unique"]
repository = "https://github.com/ballerina-platform/module-ballerina-uuid"
icon = "icon.png"
license = ["Apache-2.0"]
distribution = "2201.5.0"
distribution = "2201.7.0"

[platform.java11]
graalvmCompatible = true
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
org.gradle.caching=true
group=io.ballerina.stdlib
version=1.5.2-SNAPSHOT
version=1.6.0-SNAPSHOT

checkstylePluginVersion=8.18
spotbugsPluginVersion=4.5.1
Expand All @@ -9,11 +9,11 @@ downloadPluginVersion=4.0.4
releasePluginVersion=2.6.0
ballerinaGradlePluginVersion=1.1.0

ballerinaLangVersion=2201.5.0
ballerinaLangVersion=2201.6.0-20230614-102000-d1aade7d

#stdlib dependencies
stdlibCryptoVersion=2.3.1
stdlibTimeVersion=2.2.4
stdlibCryptoVersion=2.4.0-20230614-154200-1745f32
stdlibTimeVersion=2.3.0-20230614-151000-47027a9

puppycrawlCheckstyleVersion=8.18
slf4jVersion=1.7.30

0 comments on commit 07dba2e

Please sign in to comment.