Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace slack channel link with discord server link #310

Merged
merged 4 commits into from
Oct 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,5 +219,5 @@ All contributors are encouraged to read the [Ballerina Code of Conduct](https://

* For more information go to the [`stan` library](https://lib.ballerina.io/ballerinax/stan/latest).
* For example demonstrations of the usage, go to [Ballerina By Examples](https://ballerina.io/learn/by-example/).
* Chat live with us via our [Slack channel](https://ballerina.io/community/slack/).
* Chat live with us via our [Discord server](https://discord.gg/ballerinalang).
* Post all technical questions on Stack Overflow with the [#ballerina](https://stackoverflow.com/questions/tagged/ballerina) tag.
8 changes: 4 additions & 4 deletions ballerina/Ballerina.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
org = "ballerinax"
name = "stan"
version = "2.4.1"
version = "2.5.0"
authors = ["Ballerina"]
keywords = ["service", "client", "messaging", "network", "streaming"]
repository = "https://github.com/ballerina-platform/module-ballerinax-stan"
icon = "icon.png"
license = ["Apache-2.0"]
distribution = "2201.2.0"
distribution = "2201.3.0"

[[platform.java11.dependency]]
path = "./lib/java-nats-streaming-2.2.3.jar"
Expand All @@ -21,8 +21,8 @@ path = "./lib/protobuf-java-3.20.3.jar"
[[platform.java11.dependency]]
groupId = "io.ballerina.stdlib"
artifactId = "stan-native"
version = "2.4.1"
path = "../native/build/libs/stan-native-2.4.1-SNAPSHOT.jar"
version = "2.5.0"
path = "../native/build/libs/stan-native-2.5.0-SNAPSHOT.jar"

[build-options]
observabilityIncluded=true
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 = "stan-compiler-plugin"
class = "io.ballerina.stdlib.stan.plugin.StanCompilerPlugin"

[[dependency]]
path = "../compiler-plugin/build/libs/stan-compiler-plugin-2.4.1-SNAPSHOT.jar"
path = "../compiler-plugin/build/libs/stan-compiler-plugin-2.5.0-SNAPSHOT.jar"
22 changes: 16 additions & 6 deletions 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 = "crypto"
version = "2.2.3"
version = "2.3.0"
dependencies = [
{org = "ballerina", name = "jballerina.java"},
{org = "ballerina", name = "time"}
Expand All @@ -21,7 +21,7 @@ modules = [
[[package]]
org = "ballerina"
name = "io"
version = "1.3.0"
version = "1.3.1"
scope = "testOnly"
dependencies = [
{org = "ballerina", name = "jballerina.java"},
Expand All @@ -36,6 +36,15 @@ modules = [
{org = "ballerina", packageName = "jballerina.java", moduleName = "jballerina.java"}
]

[[package]]
org = "ballerina"
name = "lang.regexp"
version = "0.0.0"
scope = "testOnly"
dependencies = [
{org = "ballerina", name = "jballerina.java"}
]

[[package]]
org = "ballerina"
name = "lang.runtime"
Expand All @@ -54,7 +63,8 @@ name = "lang.string"
version = "0.0.0"
scope = "testOnly"
dependencies = [
{org = "ballerina", name = "jballerina.java"}
{org = "ballerina", name = "jballerina.java"},
{org = "ballerina", name = "lang.regexp"}
]
modules = [
{org = "ballerina", packageName = "lang.string", moduleName = "lang.string"}
Expand All @@ -72,7 +82,7 @@ dependencies = [
[[package]]
org = "ballerina"
name = "log"
version = "2.4.1"
version = "2.5.0"
scope = "testOnly"
dependencies = [
{org = "ballerina", name = "io"},
Expand Down Expand Up @@ -107,7 +117,7 @@ modules = [
[[package]]
org = "ballerina"
name = "time"
version = "2.2.2"
version = "2.2.3"
dependencies = [
{org = "ballerina", name = "jballerina.java"}
]
Expand All @@ -127,7 +137,7 @@ modules = [
[[package]]
org = "ballerinax"
name = "stan"
version = "2.4.1"
version = "2.5.0"
dependencies = [
{org = "ballerina", name = "crypto"},
{org = "ballerina", name = "jballerina.java"},
Expand Down
2 changes: 1 addition & 1 deletion ballerina/Package.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,5 +136,5 @@ To report bugs, request new features, start new discussions, view project boards

### Useful links

- Chat live with us via our [Slack channel](https://ballerina.io/community/slack/).
- Chat live with us via our [Discord server](https://discord.gg/ballerinalang).
- Post all technical questions on Stack Overflow with the [#ballerina](https://stackoverflow.com/questions/tagged/ballerina) tag.
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 = ["service", "client", "messaging", "network", "streaming"]
repository = "https://github.com/ballerina-platform/module-ballerinax-stan"
icon = "icon.png"
license = ["Apache-2.0"]
distribution = "2201.2.0"
distribution = "2201.3.0"

[[platform.java11.dependency]]
path = "./lib/java-nats-streaming-2.2.3.jar"
Expand Down
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

### Changed
- [API docs updated](https://github.com/ballerina-platform/ballerina-standard-library/issues/3463)

## [2.4.0] - 2022-09-08

### Changed
- [Mark STAN service type as distinct.](https://github.com/ballerina-platform/ballerina-standard-library/issues/2398)

Expand Down
12 changes: 6 additions & 6 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
org.gradle.caching=true
group=io.ballerina.stdlib
version=2.4.1-SNAPSHOT
ballerinaLangVersion=2201.2.0
version=2.5.0-SNAPSHOT
ballerinaLangVersion=2201.3.0-20221012-173100-6f66f7ec

puppycrawlCheckstyleVersion=8.18
testngVersion=7.4.0
ballerinaGradlePluginVersion=0.15.0

stdlibCryptoVersion=2.2.3-20220921-105400-812e99d
stdlibLogVersion=2.4.0
stdlibTimeVersion=2.2.2
stdlibIoVersion=1.3.0
stdlibCryptoVersion=2.3.0-20221013-155100-b763f41
stdlibLogVersion=2.5.0-20221013-134200-75c990a
stdlibTimeVersion=2.2.3-20221013-110700-b1911b4
stdlibIoVersion=1.3.1-20221013-104400-2228262
observeVersion=1.0.5
observeInternalVersion=1.0.4