From 61a365dcf43d369d4c227c738e96d470bff4ff66 Mon Sep 17 00:00:00 2001 From: ayeshLK Date: Fri, 11 Aug 2023 10:51:14 +0530 Subject: [PATCH 1/2] [Automated] Update the native jar versions --- ballerina/Ballerina.toml | 12 ++++++------ ballerina/CompilerPlugin.toml | 2 +- ballerina/Dependencies.toml | 16 ++++++++-------- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/ballerina/Ballerina.toml b/ballerina/Ballerina.toml index 919fcabd..ff83d89b 100755 --- a/ballerina/Ballerina.toml +++ b/ballerina/Ballerina.toml @@ -1,13 +1,13 @@ [package] org = "ballerina" name = "email" -version = "2.8.0" +version = "2.9.0" authors = ["Ballerina"] keywords = ["email", "SMTP", "POP", "POP3", "IMAP", "mail"] repository = "https://github.com/ballerina-platform/module-ballerina-email" icon = "icon.png" license = ["Apache-2.0"] -distribution = "2201.7.0" +distribution = "2201.8.0" [platform.java17] graalvmCompatible = true @@ -39,12 +39,12 @@ path = "./lib/activation-1.1.1.jar" [[platform.java17.dependency]] groupId = "io.ballerina.stdlib" artifactId = "email-native" -version = "2.8.0" -path = "../native/build/libs/email-native-2.8.0.jar" +version = "2.9.0" +path = "../native/build/libs/email-native-2.9.0-SNAPSHOT.jar" [[platform.java17.dependency]] groupId = "io.ballerina.stdlib" artifactId = "email-test-utils" -version = "2.8.0" -path = "../test-utils/build/libs/email-test-utils-2.8.0.jar" +version = "2.9.0" +path = "../test-utils/build/libs/email-test-utils-2.9.0-SNAPSHOT.jar" scope = "testOnly" diff --git a/ballerina/CompilerPlugin.toml b/ballerina/CompilerPlugin.toml index 54c82f32..d4de5905 100755 --- a/ballerina/CompilerPlugin.toml +++ b/ballerina/CompilerPlugin.toml @@ -3,4 +3,4 @@ id = "email-compiler-plugin" class = "io.ballerina.stdlib.email.compiler.EmailCompilerPlugin" [[dependency]] -path = "../compiler-plugin/build/libs/email-compiler-plugin-2.8.0.jar" +path = "../compiler-plugin/build/libs/email-compiler-plugin-2.9.0-SNAPSHOT.jar" diff --git a/ballerina/Dependencies.toml b/ballerina/Dependencies.toml index 1f9526b6..60a20840 100644 --- a/ballerina/Dependencies.toml +++ b/ballerina/Dependencies.toml @@ -5,12 +5,12 @@ [ballerina] dependencies-toml-version = "2" -distribution-version = "2201.7.0" +distribution-version = "2201.8.0-20230726-145300-b2bdf796" [[package]] org = "ballerina" name = "email" -version = "2.8.0" +version = "2.9.0" dependencies = [ {org = "ballerina", name = "jballerina.java"}, {org = "ballerina", name = "lang.runtime"}, @@ -27,7 +27,7 @@ modules = [ [[package]] org = "ballerina" name = "io" -version = "1.5.0" +version = "1.6.0" dependencies = [ {org = "ballerina", name = "jballerina.java"}, {org = "ballerina", name = "lang.value"} @@ -119,7 +119,7 @@ dependencies = [ [[package]] org = "ballerina" name = "log" -version = "2.8.0" +version = "2.9.0" dependencies = [ {org = "ballerina", name = "io"}, {org = "ballerina", name = "jballerina.java"}, @@ -133,7 +133,7 @@ modules = [ [[package]] org = "ballerina" name = "mime" -version = "2.8.0" +version = "2.9.0" dependencies = [ {org = "ballerina", name = "io"}, {org = "ballerina", name = "jballerina.java"}, @@ -146,7 +146,7 @@ modules = [ [[package]] org = "ballerina" name = "observe" -version = "1.1.0" +version = "1.2.0" dependencies = [ {org = "ballerina", name = "jballerina.java"} ] @@ -154,7 +154,7 @@ dependencies = [ [[package]] org = "ballerina" name = "task" -version = "2.4.0" +version = "2.5.0" dependencies = [ {org = "ballerina", name = "jballerina.java"}, {org = "ballerina", name = "time"} @@ -179,7 +179,7 @@ modules = [ [[package]] org = "ballerina" name = "time" -version = "2.3.0" +version = "2.4.0" dependencies = [ {org = "ballerina", name = "jballerina.java"} ] From 3a6fedb75965b9069f271d12a79dc031abdd1cf8 Mon Sep 17 00:00:00 2001 From: ayeshLK Date: Fri, 11 Aug 2023 10:56:29 +0530 Subject: [PATCH 2/2] Bump to the Next Minor Version and Update the Distribution --- build-config/resources/Ballerina.toml | 2 +- gradle.properties | 22 +++++++++++----------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/build-config/resources/Ballerina.toml b/build-config/resources/Ballerina.toml index 54655338..5b46b11d 100644 --- a/build-config/resources/Ballerina.toml +++ b/build-config/resources/Ballerina.toml @@ -7,7 +7,7 @@ keywords = ["email", "SMTP", "POP", "POP3", "IMAP", "mail"] repository = "https://github.com/ballerina-platform/module-ballerina-email" icon = "icon.png" license = ["Apache-2.0"] -distribution = "2201.7.0" +distribution = "2201.8.0" [platform.java17] graalvmCompatible = true diff --git a/gradle.properties b/gradle.properties index 6174c3d5..5b6a7615 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ org.gradle.caching=true group=io.ballerina.stdlib -version=2.8.1-SNAPSHOT +version=2.9.0-SNAPSHOT slf4jVersion=1.7.30 testngVersion=7.6.1 javaMailVersion=1.6.2 @@ -13,15 +13,15 @@ githubSpotbugsVersion=5.0.14 githubJohnrengelmanShadowVersion=8.1.1 underCouchDownloadVersion=5.4.0 researchgateReleaseVersion=2.8.0 -ballerinaGradlePluginVersion=2.0.1-SNAPSHOT +ballerinaGradlePluginVersion=2.0.1 ballerinaLangVersion=2201.8.0-20230726-145300-b2bdf796 -stdlibTaskVersion=2.4.0 -stdlibMimeVersion=2.8.0 -stdlibFileVersion=1.8.0 -stdlibTimeVersion=2.3.0 -stdlibLogVersion=2.8.1-20230718-085900-36c385c -stdlibOsVersion=1.7.0 -stdlibIoVersion=1.5.0 -observeVersion=1.1.0 -observeInternalVersion=1.1.0 +stdlibTaskVersion=2.5.0-20230810-145800-b191831 +stdlibMimeVersion=2.9.0-20230810-183500-af95101 +stdlibFileVersion=1.9.0-20230811-093200-875a787 +stdlibTimeVersion=2.4.0-20230810-115600-b28bb07 +stdlibLogVersion=2.9.0-20230810-161500-6d3d1df +stdlibOsVersion=1.8.0-20230810-161400-624a2aa +stdlibIoVersion=1.6.0-20230810-115500-2e569f5 +observeVersion=1.2.0-20230810-105500-5841859 +observeInternalVersion=1.2.0-20230810-141300-a348751