Skip to content

Commit

Permalink
Release v0.25.4
Browse files Browse the repository at this point in the history
Also updated some dependencies.

Signed-off-by: Ivan Kozlovic <ivan@synadia.com>
  • Loading branch information
kozlovic committed Apr 17, 2023
1 parent 4cfa4f1 commit 6e64eeb
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 93 deletions.
8 changes: 4 additions & 4 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,12 @@ changelog:
skip: true

builds:
- main: ./nats-streaming-server.go
- main: .
binary: nats-streaming-server
flags:
- -trimpath
ldflags:
- -w -X github.com/nats-io/nats-streaming-server/server.gitCommit={{.ShortCommit}} -X github.com/nats-io/nats-server/v2/server.gitCommit=23ffc16
- -w -X github.com/nats-io/nats-streaming-server/server.gitCommit={{.ShortCommit}} -X github.com/nats-io/nats-server/v2/server.gitCommit=f84ca24
env:
- GO111MODULE=on
- CGO_ENABLED=0
Expand Down Expand Up @@ -47,14 +49,12 @@ nfpms:

archives:
- name_template: '{{.ProjectName}}-{{.Tag}}-{{.Os}}-{{.Arch}}{{if .Arm}}{{.Arm}}{{end}}'
rlcp: true
wrap_in_directory: true
format: zip
files:
- README.md
- LICENSE
- name_template: '{{.ProjectName}}-{{.Tag}}-{{.Os}}-{{.Arch}}{{if .Arm}}{{.Arm}}{{end}}'
rlcp: true
id: targz-archives
wrap_in_directory: true
format: tar.gz
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@ under the Apache Version 2.0 license found in the LICENSE file.
[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.25.3
[Release-image]: https://img.shields.io/badge/release-v0.25.3-1eb0fc.svg
[Release-Url]: https://github.com/nats-io/nats-streaming-server/releases/tag/v0.25.4
[Release-image]: https://img.shields.io/badge/release-v0.25.4-1eb0fc.svg
[github-release]: https://github.com/nats-io/nats-streaming-server/releases/
29 changes: 22 additions & 7 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,20 +1,35 @@
module github.com/nats-io/nats-streaming-server

go 1.14
go 1.19

require (
github.com/go-sql-driver/mysql v1.7.0
github.com/gogo/protobuf v1.3.2
github.com/hashicorp/go-hclog v1.5.0
github.com/hashicorp/go-msgpack/v2 v2.1.0
github.com/hashicorp/raft v1.4.0
github.com/lib/pq v1.10.7
github.com/nats-io/nats-server/v2 v2.9.15
github.com/lib/pq v1.10.8
github.com/nats-io/nats-server/v2 v2.9.16
github.com/nats-io/nats.go v1.25.0
github.com/nats-io/nuid v1.0.1
github.com/nats-io/stan.go v0.10.4
github.com/prometheus/procfs v0.8.0
go.etcd.io/bbolt v1.3.6
golang.org/x/crypto v0.6.0
golang.org/x/sys v0.5.0
github.com/prometheus/procfs v0.9.0
go.etcd.io/bbolt v1.3.7
golang.org/x/crypto v0.8.0
golang.org/x/sys v0.7.0
)

require (
github.com/armon/go-metrics v0.4.1 // indirect
github.com/fatih/color v1.13.0 // indirect
github.com/hashicorp/go-immutable-radix v1.0.0 // indirect
github.com/hashicorp/go-msgpack v0.5.5 // indirect
github.com/hashicorp/golang-lru v0.5.0 // indirect
github.com/klauspost/compress v1.16.4 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/minio/highwayhash v1.0.2 // indirect
github.com/nats-io/jwt/v2 v2.4.1 // indirect
github.com/nats-io/nkeys v0.4.4 // indirect
golang.org/x/time v0.3.0 // indirect
)

0 comments on commit 6e64eeb

Please sign in to comment.