Skip to content

Commit

Permalink
Merge pull request #122 from SkNuwanTissera/1.x
Browse files Browse the repository at this point in the history
update message record and bump versions (1.x branch)
  • Loading branch information
LakshanSS authored Nov 23, 2022
2 parents 4d38daa + 6fb62c6 commit 6847d9e
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dev-stg-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
./gradlew build
- name: Ballerina Build
uses: ballerina-platform/ballerina-action@2201.0.3
uses: ballerina-platform/ballerina-action@2201.1.1
with:
args:
pack ./asb-ballerina
Expand All @@ -46,7 +46,7 @@ jobs:

- name: Push to Staging
if: github.event.inputs.bal_central_environment == 'STAGE'
uses: ballerina-platform/ballerina-action@2201.0.3
uses: ballerina-platform/ballerina-action@2201.1.1
with:
args:
push
Expand All @@ -57,7 +57,7 @@ jobs:

- name: Push to Dev
if: github.event.inputs.bal_central_environment == 'DEV'
uses: ballerina-platform/ballerina-action@2201.0.3
uses: ballerina-platform/ballerina-action@2201.1.1
with:
args:
push
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
# Build Ballerina Project
- name: Ballerina Build
uses: ballerina-platform/ballerina-action@2201.0.3
uses: ballerina-platform/ballerina-action@2201.1.1
with:
args:
pack ./asb-ballerina
Expand All @@ -56,7 +56,7 @@ jobs:

# Push to Ballerina Central
- name: Ballerina Push
uses: ballerina-platform/ballerina-action@2201.0.3
uses: ballerina-platform/ballerina-action@2201.1.1
with:
args:
push
Expand Down
4 changes: 2 additions & 2 deletions asb-ballerina/Ballerina.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
distribution = "2201.0.0"
distribution = "2201.1.1"
org = "ballerinax"
name = "asb"
version = "2.3.0"
version = "2.3.1"
license= ["Apache-2.0"]
authors = ["Ballerina"]
keywords = ["IT Operations/Message Brokers", "Cost/Paid", "Vendor/Microsoft"]
Expand Down
10 changes: 5 additions & 5 deletions asb-ballerina/Dependencies.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies-toml-version = "2"
[[package]]
org = "ballerina"
name = "io"
version = "1.2.0"
version = "1.2.2"
scope = "testOnly"
dependencies = [
{org = "ballerina", name = "jballerina.java"},
Expand All @@ -36,7 +36,7 @@ dependencies = [
[[package]]
org = "ballerina"
name = "log"
version = "2.2.0"
version = "2.2.1"
scope = "testOnly"
dependencies = [
{org = "ballerina", name = "io"},
Expand All @@ -51,15 +51,15 @@ modules = [
[[package]]
org = "ballerina"
name = "observe"
version = "1.0.1"
version = "1.0.5"
dependencies = [
{org = "ballerina", name = "jballerina.java"}
]

[[package]]
org = "ballerina"
name = "os"
version = "1.2.0"
version = "1.2.1"
scope = "testOnly"
dependencies = [
{org = "ballerina", name = "jballerina.java"}
Expand Down Expand Up @@ -95,7 +95,7 @@ modules = [
[[package]]
org = "ballerinax"
name = "asb"
version = "2.3.0"
version = "2.3.1"
dependencies = [
{org = "ballerina", name = "jballerina.java"},
{org = "ballerina", name = "log"},
Expand Down
2 changes: 1 addition & 1 deletion asb-ballerina/Package.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This package provides the capability to easily access Microsoft Azure Service Bu

| | Version |
|----------------------------|-----------------------|
| Ballerina Language | Swan Lake 2201.0.0 |
| Ballerina Language | Swan Lake 2201.1.1 |
| Azure Service Bus SDK | 3.5.1 |

## Report issues
Expand Down
2 changes: 1 addition & 1 deletion asb-ballerina/message.bal
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public type Message record {|
@display {label: "Body"}
string|xml|json|byte[] body;
@display {label: "Content Type"}
string contentType?;
string contentType = TEXT;
@display {label: "Message Id"}
string messageId?;
@display {label: "To"}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
org.gradle.caching=true
group=org.ballerinax.azure.servicebus
version=2.3.0
ballerinaLangVersion=2201.0.3
ballerinaLangVersion=2201.1.1

0 comments on commit 6847d9e

Please sign in to comment.