Skip to content

Commit 10499b4

Browse files
authored
Bumped version to 3.1.0 (#156)
* Bumped version to 3.1.0 * Updated changelog * Updated travis yml * Updated travis * Fix for travis-ci/travis-ci#9739
1 parent 2554cb5 commit 10499b4

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ go_import_path: firebase.google.com/go
2020

2121
before_install:
2222
# Golint requires Go 1.7 or later.
23-
- if ! [[ "$TRAVIS_GO_VERSION" =~ ^1\.6\.[0-9]+$ ]]; then go get github.com/golang/lint/golint; fi
23+
- if ! [[ "$TRAVIS_GO_VERSION" =~ ^1\.6\.([0-9]+|x)$ ]]; then go get github.com/golang/lint/golint; fi
2424

2525
install:
2626
# Prior to golang 1.8, this can trigger an error for packages containing only tests.
2727
- go get -t -v $(go list ./... | grep -v integration)
2828

2929
script:
30-
- if ! [[ "$TRAVIS_GO_VERSION" =~ ^1\.6\.[0-9]+$ ]]; then golint -set_exit_status $(go list ./...); fi
30+
- if ! [[ "$TRAVIS_GO_VERSION" =~ ^1\.6\.([0-9]+|x)+$ ]]; then golint -set_exit_status $(go list ./...); fi
3131
- ./.travis.gofmt.sh
3232
- go test -v -race -test.short ./... # Run tests with the race detector.
3333
- go vet -v ./... # Run Go static analyzer.

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Unreleased
22

3+
# v3.1.0
4+
35
- [added] Added new functions for testing errors in the `iid` package
46
(e.g. `iid.IsNotFound()`).
57
- [fixed] `auth.UpdateUser()` and `auth.DeleteUser()` return the expected

firebase.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ import (
4242
var defaultAuthOverrides = make(map[string]interface{})
4343

4444
// Version of the Firebase Go Admin SDK.
45-
const Version = "3.0.0"
45+
const Version = "3.1.0"
4646

4747
// firebaseEnvName is the name of the environment variable with the Config.
4848
const firebaseEnvName = "FIREBASE_CONFIG"

0 commit comments

Comments
 (0)