Release 2.1.4

Signed-off-by: Ivan Kozlovic <ivan@synadia.com>
This commit is contained in:
Ivan Kozlovic
2020-01-29 16:16:42 -07:00
parent 4798567266
commit 2e2f94edea
4 changed files with 6 additions and 6 deletions

View File

@@ -26,7 +26,7 @@ script:
- set -e - set -e
- go test -i ./... - go test -i ./...
- go test -v -run=TestNoRace --failfast -p=1 ./... - go test -v -run=TestNoRace --failfast -p=1 ./...
- if [[ "$TRAVIS_GO_VERSION" =~ 1.12 ]]; then ./scripts/cov.sh TRAVIS; else go test -v -race -p=1 --failfast ./...; fi - if [[ "$TRAVIS_GO_VERSION" =~ 1.13 ]]; then ./scripts/cov.sh TRAVIS; else go test -v -race -p=1 --failfast ./...; fi
- set +e - set +e
deploy: deploy:
@@ -36,4 +36,4 @@ deploy:
verbose: true verbose: true
on: on:
tags: true tags: true
condition: $TRAVIS_GO_VERSION =~ 1.12 condition: $TRAVIS_GO_VERSION =~ 1.13

View File

@@ -29,8 +29,8 @@ If you are interested in contributing to NATS, read about our...
[Fossa-Image]: https://app.fossa.io/api/projects/git%2Bgithub.com%2Fnats-io%2Fgnatsd.svg?type=shield [Fossa-Image]: https://app.fossa.io/api/projects/git%2Bgithub.com%2Fnats-io%2Fgnatsd.svg?type=shield
[Build-Status-Url]: https://travis-ci.org/nats-io/nats-server [Build-Status-Url]: https://travis-ci.org/nats-io/nats-server
[Build-Status-Image]: https://travis-ci.org/nats-io/nats-server.svg?branch=master [Build-Status-Image]: https://travis-ci.org/nats-io/nats-server.svg?branch=master
[Release-Url]: https://github.com/nats-io/nats-server/releases/tag/v2.1.2 [Release-Url]: https://github.com/nats-io/nats-server/releases/tag/v2.1.4
[Release-image]: https://img.shields.io/badge/release-v2.1.2-1eb0fc.svg [Release-image]: https://img.shields.io/badge/release-v2.1.4-1eb0fc.svg
[Coverage-Url]: https://coveralls.io/r/nats-io/nats-server?branch=master [Coverage-Url]: https://coveralls.io/r/nats-io/nats-server?branch=master
[Coverage-image]: https://coveralls.io/repos/github/nats-io/nats-server/badge.svg?branch=master [Coverage-image]: https://coveralls.io/repos/github/nats-io/nats-server/badge.svg?branch=master
[ReportCard-Url]: https://goreportcard.com/report/nats-io/nats-server [ReportCard-Url]: https://goreportcard.com/report/nats-io/nats-server

View File

@@ -1,4 +1,4 @@
FROM golang:1.12-alpine3.10 AS builder FROM golang:1.13.7-alpine3.11 AS builder
WORKDIR $GOPATH/src/github.com/nats-io/nats-server WORKDIR $GOPATH/src/github.com/nats-io/nats-server

View File

@@ -40,7 +40,7 @@ var (
const ( const (
// VERSION is the current version for the server. // VERSION is the current version for the server.
VERSION = "2.1.3-RC05" VERSION = "2.1.4"
// PROTO is the currently supported protocol. // PROTO is the currently supported protocol.
// 0 was the original // 0 was the original