diff --git a/ballerina-test-automation/gradle.properties b/ballerina-test-automation/gradle.properties index f87563642e..30830dc471 100644 --- a/ballerina-test-automation/gradle.properties +++ b/ballerina-test-automation/gradle.properties @@ -1,7 +1,7 @@ -swan-lake-latest-version=swan-lake-2201.8.1 +swan-lake-latest-version=swan-lake-2201.8.2 swan-lake-latest-spec-version=2023R1 -swan-lake-latest-version-display-text=2201.8.1 -swan-lake-latest-tool-version=1.4.1 -latest-tool-version=1.4.1 +swan-lake-latest-version-display-text=2201.8.2 +swan-lake-latest-tool-version=1.4.2 +latest-tool-version=1.4.2 1-x-channel-latest-version=1.2.13 1-x-channel-latest-spec-version=2020R1 diff --git a/examples/programs-and-modules/programs_and_modules.bal b/examples/programs-and-modules/programs_and_modules.bal index d8c1d13036..e785a8ea83 100644 --- a/examples/programs-and-modules/programs_and_modules.bal +++ b/examples/programs-and-modules/programs_and_modules.bal @@ -1,11 +1,12 @@ -// This import declaration binds the prefix `io` to the `ballerina/io` module. -// The prefix by default comes form the last part of the module name. +// This import declaration binds the prefix `io` to the `ballerina/io` package. +// The prefix by default comes from the last part of the package name. + // The `ballerina` org name is reserved for the Ballerina library packages. import ballerina/io; // `main` function is the program entry point. -// `public` makes function visible outside the module. +// `public` makes the function visible outside the package. public function main() { - // Here `io:println` means function `println` is in the module bound to prefix `io`. + // Here `io:println` means function `println` is in the package bound to prefix `io`. io:println("Hello, World!"); } diff --git a/examples/sequence-diagrams/sequence_diagrams.bal b/examples/sequence-diagrams/sequence_diagrams.bal index 4980684906..3da030c426 100644 --- a/examples/sequence-diagrams/sequence_diagrams.bal +++ b/examples/sequence-diagrams/sequence_diagrams.bal @@ -6,11 +6,11 @@ import ballerina/io; public function main() returns error? { // The diagram also has a lifeline for each client object parameter or variable in // the initialization section, representing the remote system to which the client object is sending messages. - http:Client cl = check new ("https://www.mocky.io"); + http:Client cl = check new ("https://run.mocky.io"); // Each remote method call on a client object is represented as a horizontal line // between the lifeline of the worker making the call and the remote system. - string payload = check cl->get("/v2/5ae082123200006b00510c3d/"); + string payload = check cl->get("/v3/7240398e-0435-4457-91b0-0c862f10563f/"); io:println(payload); return; diff --git a/gradle.properties b/gradle.properties index 3496f562f8..97e4feeee6 100644 --- a/gradle.properties +++ b/gradle.properties @@ -75,7 +75,7 @@ persistToolVersion=1.2.0-20230908-152500-2ba8c45 # Dev Tools devToolsVersion=1.2.1-20230914-153500-664cd40 -ballerinaCommandVersion=1.4.1 +ballerinaCommandVersion=1.4.2 # GraphQL Tool graphqlVersion=0.8.0-20230914-153500-87f60d6