File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -20,14 +20,14 @@ go_import_path: firebase.google.com/go
20
20
21
21
before_install :
22
22
# 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
24
24
25
25
install :
26
26
# Prior to golang 1.8, this can trigger an error for packages containing only tests.
27
27
- go get -t -v $(go list ./... | grep -v integration)
28
28
29
29
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
31
31
- ./.travis.gofmt.sh
32
32
- go test -v -race -test.short ./... # Run tests with the race detector.
33
33
- go vet -v ./... # Run Go static analyzer.
Original file line number Diff line number Diff line change 1
1
# Unreleased
2
2
3
+ # v3.1.0
4
+
3
5
- [ added] Added new functions for testing errors in the ` iid ` package
4
6
(e.g. ` iid.IsNotFound() ` ).
5
7
- [ fixed] ` auth.UpdateUser() ` and ` auth.DeleteUser() ` return the expected
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ import (
42
42
var defaultAuthOverrides = make (map [string ]interface {})
43
43
44
44
// Version of the Firebase Go Admin SDK.
45
- const Version = "3.0 .0"
45
+ const Version = "3.1 .0"
46
46
47
47
// firebaseEnvName is the name of the environment variable with the Config.
48
48
const firebaseEnvName = "FIREBASE_CONFIG"
You can’t perform that action at this time.
0 commit comments