Skip to content

Commit

Permalink
Merge pull request #58 from SasinduDilshara/change_v1.0
Browse files Browse the repository at this point in the history
Update version into 1.0.0
  • Loading branch information
SasinduDilshara authored Nov 20, 2024
2 parents 348e6c9 + 6625aa9 commit 3bb5026
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
10 changes: 5 additions & 5 deletions ballerina/Ballerina.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
org = "ballerina"
name = "data.jsondata"
version = "0.3.0"
version = "1.0.0"
authors = ["Ballerina"]
keywords = ["json", "json path", "json-transform", "json transform", "json to json", "json-convert", "json convert"]
repository = "https://github.com/ballerina-platform/module-ballerina-data.jsondata"
Expand All @@ -15,8 +15,8 @@ graalvmCompatible = true
[[platform.java21.dependency]]
groupId = "io.ballerina.lib"
artifactId = "jsondata-native"
version = "0.3.0"
path = "../native/build/libs/data.jsondata-native-0.3.0-SNAPSHOT.jar"
version = "1.0.0"
path = "../native/build/libs/data.jsondata-native-1.0.0-SNAPSHOT.jar"

[[platform.java21.dependency]]
path = "./lib/json-path-2.9.0.jar"
Expand All @@ -39,5 +39,5 @@ version = "2.4.7"
[[platform.java21.dependency]]
groupId = "io.ballerina.stdlib"
artifactId = "constraint-native"
version = "1.5.1"
path = "./lib/constraint-native-1.5.1-20240930-123400-5ecd396.jar"
version = "1.6.0"
path = "./lib/constraint-native-1.6.0-20241113-090900-d276ad5.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 = "constraint-compiler-plugin"
class = "io.ballerina.lib.data.jsondata.compiler.JsondataCompilerPlugin"

[[dependency]]
path = "../compiler-plugin/build/libs/data.jsondata-compiler-plugin-0.3.0-SNAPSHOT.jar"
path = "../compiler-plugin/build/libs/data.jsondata-compiler-plugin-1.0.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.10.0"
distribution-version = "2201.11.0-20241112-214900-6b80ab87"

[[package]]
org = "ballerina"
name = "constraint"
version = "1.5.0"
version = "1.6.0"
scope = "testOnly"
dependencies = [
{org = "ballerina", name = "jballerina.java"}
Expand All @@ -22,7 +22,7 @@ modules = [
[[package]]
org = "ballerina"
name = "data.jsondata"
version = "0.3.0"
version = "1.0.0"
dependencies = [
{org = "ballerina", name = "constraint"},
{org = "ballerina", name = "file"},
Expand All @@ -42,7 +42,7 @@ modules = [
[[package]]
org = "ballerina"
name = "file"
version = "1.10.0"
version = "1.10.1"
scope = "testOnly"
dependencies = [
{org = "ballerina", name = "io"},
Expand All @@ -57,7 +57,7 @@ modules = [
[[package]]
org = "ballerina"
name = "io"
version = "1.6.1"
version = "1.6.2"
scope = "testOnly"
dependencies = [
{org = "ballerina", name = "jballerina.java"},
Expand Down Expand Up @@ -153,7 +153,7 @@ modules = [
[[package]]
org = "ballerina"
name = "os"
version = "1.8.0"
version = "1.8.1"
scope = "testOnly"
dependencies = [
{org = "ballerina", name = "io"},
Expand All @@ -177,7 +177,7 @@ modules = [
[[package]]
org = "ballerina"
name = "time"
version = "2.5.0"
version = "2.6.0"
scope = "testOnly"
dependencies = [
{org = "ballerina", name = "jballerina.java"}
Expand Down
2 changes: 1 addition & 1 deletion ballerina/tests/from_json_string_test.bal
Original file line number Diff line number Diff line change
Expand Up @@ -1616,7 +1616,7 @@ isolated function testParseStringNegative4() returns Error? {

Union|Error y = parseString(str);
test:assertTrue(y is Error);
test:assertEquals((<Error>y).message(), "incompatible expected type 'ballerina/data.jsondata:0:Union' for value '{\"name\":\"John\"}'");
test:assertEquals((<Error>y).message(), "incompatible expected type 'ballerina/data.jsondata:1:Union' for value '{\"name\":\"John\"}'");

table<RN2>|Error z = parseString(str);
test:assertTrue(z is Error);
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 @@ -6,7 +6,7 @@ authors = ["Ballerina"]
keywords = ["json", "json path", "json-transform", "json transform", "json to json", "json-convert", "json convert"]
repository = "https://github.com/ballerina-platform/module-ballerina-data.jsondata"
license = ["Apache-2.0"]
distribution = "2201.10.0"
distribution = "2201.11.0"
export = ["data.jsondata"]

[platform.java21]
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
org.gradle.caching=true
group=io.ballerina.lib
version=0.3.0-SNAPSHOT
version=1.0.0-SNAPSHOT
ballerinaLangVersion=2201.11.0-20241112-214900-6b80ab87

checkstyleToolVersion=10.12.0
Expand Down

0 comments on commit 3bb5026

Please sign in to comment.