Skip to content

Commit

Permalink
Merge pull request #1005 from daneshk/main
Browse files Browse the repository at this point in the history
Update the version for the update 10 release
  • Loading branch information
daneshk committed Aug 9, 2024
2 parents a77e766 + 393c746 commit 2232a79
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 31 deletions.
12 changes: 6 additions & 6 deletions ballerina/Ballerina.toml
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
[package]
org = "ballerinax"
name = "postgresql"
version = "1.12.0"
version = "1.13.0"
authors = ["Ballerina"]
keywords = ["database", "client", "network", "SQL", "RDBMS", "PostgreSQL"]
repository = "https://github.com/ballerina-platform/module-ballerinax-postgresql"
icon = "icon.png"
license = ["Apache-2.0"]
distribution = "2201.9.0"
distribution = "2201.10.0"

[platform.java17]
graalvmCompatible = true

[[platform.java17.dependency]]
groupId = "io.ballerina.stdlib"
artifactId = "postgresql-native"
version = "1.12.0"
path = "../native/build/libs/postgresql-native-1.12.0.jar"
version = "1.13.0"
path = "../native/build/libs/postgresql-native-1.13.0-SNAPSHOT.jar"

[[platform.java17.dependency]]
groupId = "io.ballerina.stdlib"
artifactId = "sql-native"
version = "1.13.0"
path = "./lib/sql-native-1.13.0.jar"
version = "1.14.0"
path = "./lib/sql-native-1.14.0-20240809-142900-0689c89.jar"

2 changes: 1 addition & 1 deletion ballerina/CompilerPlugin.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ id = "postgresql-compiler-plugin"
class = "io.ballerina.stdlib.postgresql.compiler.PostgreSQLCompilerPlugin"

[[dependency]]
path = "../compiler-plugin/build/libs/postgresql-compiler-plugin-1.12.0.jar"
path = "../compiler-plugin/build/libs/postgresql-compiler-plugin-1.13.0-SNAPSHOT.jar"
14 changes: 7 additions & 7 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.9.0"
distribution-version = "2201.10.0-20240806-083400-aabac46a"

[[package]]
org = "ballerina"
name = "crypto"
version = "2.7.0"
version = "2.7.2"
dependencies = [
{org = "ballerina", name = "jballerina.java"},
{org = "ballerina", name = "time"}
Expand All @@ -22,7 +22,7 @@ modules = [
[[package]]
org = "ballerina"
name = "file"
version = "1.9.0"
version = "1.10.0"
scope = "testOnly"
dependencies = [
{org = "ballerina", name = "io"},
Expand All @@ -37,7 +37,7 @@ modules = [
[[package]]
org = "ballerina"
name = "io"
version = "1.6.0"
version = "1.6.1"
dependencies = [
{org = "ballerina", name = "jballerina.java"},
{org = "ballerina", name = "lang.value"}
Expand Down Expand Up @@ -143,7 +143,7 @@ dependencies = [
[[package]]
org = "ballerina"
name = "sql"
version = "1.13.0"
version = "1.14.0"
dependencies = [
{org = "ballerina", name = "io"},
{org = "ballerina", name = "jballerina.java"},
Expand Down Expand Up @@ -182,7 +182,7 @@ modules = [
[[package]]
org = "ballerinax"
name = "postgresql"
version = "1.12.0"
version = "1.13.0"
dependencies = [
{org = "ballerina", name = "crypto"},
{org = "ballerina", name = "file"},
Expand All @@ -202,7 +202,7 @@ modules = [
[[package]]
org = "ballerinax"
name = "postgresql.driver"
version = "1.5.0"
version = "1.5.1"
scope = "testOnly"
modules = [
{org = "ballerinax", packageName = "postgresql.driver", moduleName = "postgresql.driver"}
Expand Down
2 changes: 1 addition & 1 deletion build-config/resources/Ballerina.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords = ["database", "client", "network", "SQL", "RDBMS", "PostgreSQL"]
repository = "https://github.com/ballerina-platform/module-ballerinax-postgresql"
icon = "icon.png"
license = ["Apache-2.0"]
distribution = "2201.9.0"
distribution = "2201.10.0"

[platform.java17]
graalvmCompatible = true
Expand Down
32 changes: 16 additions & 16 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group=io.ballerina.stdlib
version=1.12.1-SNAPSHOT
version=1.13.0-SNAPSHOT

puppycrawlCheckstyleVersion=10.12.1
postgreSQLDriverVersion=42.6.0
Expand All @@ -11,52 +11,52 @@ researchgateReleaseVersion=2.8.0
testngVersion=7.6.1
ballerinaGradlePluginVersion=2.0.1

ballerinaLangVersion=2201.9.0
ballerinaLangVersion=2201.10.0-20240806-083400-aabac46a


# Direct Dependencies
# Level 01
stdlibIoVersion=1.6.0
stdlibIoVersion=1.6.1
stdlibTimeVersion=2.4.0

# Level 02
stdlibLogVersion=2.9.0
stdlibLogVersion=2.10.0-20240807-203000-b85cfb9
stdlibOsVersion=1.8.0

# Level 03
stdlibFileVersion=1.9.0
stdlibFileVersion=1.10.0-20240807-205900-a4d66bb

# Level 07
stdlibSqlVersion=1.13.0
stdlibSqlVersion=1.14.0-20240809-142900-0689c89

# Ballerinax Observer
observeVersion=1.2.3
observeInternalVersion=1.2.2
observeVersion=1.3.0-20240807-093200-e29ca7a
observeInternalVersion=1.3.0-20240807-094500-91e2d3a

# Transitive Dependencies
# Level 01
stdlibUrlVersion=2.4.0

# Level 02
stdlibConstraintVersion=1.5.0
stdlibCryptoVersion=2.7.0
stdlibCryptoVersion=2.7.2
stdlibTaskVersion=2.5.0

# Level 03
stdlibCacheVersion=3.8.0
stdlibMimeVersion=2.9.0
stdlibMimeVersion=2.10.0-20240807-205100-2728cdc
stdlibUuidVersion=1.8.0

# Level 04
stdlibAuthVersion=2.11.0
stdlibJwtVersion=2.11.0
stdlibOAuth2Version=2.11.0
stdlibAuthVersion=2.12.0-20240807-214700-37b31bb
stdlibJwtVersion=2.13.0-20240809-095500-b9d03ed
stdlibOAuth2Version=2.12.0-20240807-220200-7f7294b

# Level 05
stdlibHttpVersion=2.11.0
stdlibHttpVersion=2.12.0-20240809-111500-91b1ccd

# Level 06
stdlibTransactionVersion=1.9.0
stdlibTransactionVersion=1.10.0-20240809-131000-44ec1bf

# Ballerina extended library
stdlibPostgresqlDriverVersion=1.5.0
stdlibPostgresqlDriverVersion=1.5.1

0 comments on commit 2232a79

Please sign in to comment.