diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e0ff764..5852ed27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Unreleased +- + +# v2.6.0 + - [changed] Improved error handling in FCM by mapping more server-side errors to client-side error codes. - [added] Added the `db` package for interacting with the Firebase database. diff --git a/firebase.go b/firebase.go index 0c6718da..0e34c058 100644 --- a/firebase.go +++ b/firebase.go @@ -41,7 +41,7 @@ import ( var defaultAuthOverrides = make(map[string]interface{}) // Version of the Firebase Go Admin SDK. -const Version = "2.5.0" +const Version = "2.6.0" // firebaseEnvName is the name of the environment variable with the Config. const firebaseEnvName = "FIREBASE_CONFIG"