diff --git a/CHANGELOG.md b/CHANGELOG.md index 03bef956..4b47918f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Unreleased +# v3.4.0 + - [added] `firebase.App` now provides a new `DatabaseWithURL()` function for initializing a database client from a URL. diff --git a/firebase.go b/firebase.go index c083e991..3c719073 100644 --- a/firebase.go +++ b/firebase.go @@ -42,7 +42,7 @@ import ( var defaultAuthOverrides = make(map[string]interface{}) // Version of the Firebase Go Admin SDK. -const Version = "3.3.0" +const Version = "3.4.0" // firebaseEnvName is the name of the environment variable with the Config. const firebaseEnvName = "FIREBASE_CONFIG"