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

Release v0.22.1 #1206

Merged
merged 2 commits into from Aug 2, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -43,11 +43,11 @@ under the Apache Version 2.0 license found in the LICENSE file.
[License-Url]: https://www.apache.org/licenses/LICENSE-2.0
[License-Image]: https://img.shields.io/badge/License-Apache2-blue.svg
[Build-Status-Url]: https://travis-ci.com/github/nats-io/nats-streaming-server
[Build-Status-Image]: https://travis-ci.com/nats-io/nats-streaming-server.svg?branch=master
[Coverage-Url]: https://coveralls.io/r/nats-io/nats-streaming-server?branch=master
[Coverage-image]: https://coveralls.io/repos/github/nats-io/nats-streaming-server/badge.svg?branch=master&t=kIxrDE
[Build-Status-Image]: https://travis-ci.com/nats-io/nats-streaming-server.svg?branch=main
[Coverage-Url]: https://coveralls.io/r/nats-io/nats-streaming-server?branch=main
[Coverage-image]: https://coveralls.io/repos/github/nats-io/nats-streaming-server/badge.svg?branch=main&t=kIxrDE
[ReportCard-Url]: http://goreportcard.com/report/nats-io/nats-streaming-server
[ReportCard-Image]: http://goreportcard.com/badge/github.com/nats-io/nats-streaming-server
[Release-Url]: https://github.com/nats-io/nats-streaming-server/releases/tag/v0.22.0
[Release-image]: https://img.shields.io/badge/release-v0.22.0-1eb0fc.svg
[Release-Url]: https://github.com/nats-io/nats-streaming-server/releases/tag/v0.22.1
[Release-image]: https://img.shields.io/badge/release-v0.22.1-1eb0fc.svg
[github-release]: https://github.com/nats-io/nats-streaming-server/releases/
2 changes: 1 addition & 1 deletion server/server.go
Expand Up @@ -47,7 +47,7 @@ import (
// Server defaults.
const (
// VERSION is the current version for the NATS Streaming server.
VERSION = "0.22.0"
VERSION = "0.22.1"

DefaultClusterID = "test-cluster"
DefaultDiscoverPrefix = "_STAN.discover"
Expand Down
2 changes: 1 addition & 1 deletion server/server_test.go
Expand Up @@ -84,7 +84,7 @@ var (
testSQLSource = testDefaultMySQLSource
testSQLSourceAdmin = testDefaultMySQLSourceAdmin
testSQLDatabaseName = testDefaultDatabaseName
testDBSuffixes = []string{"", "_a", "_b", "_c"}
testDBSuffixes = []string{"", "_a", "_b", "_c", "_d", "_e"}
doSQL = false
)

Expand Down