diff --git a/CHANGELOG.md b/CHANGELOG.md index 24a47050..e4a90d35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Unreleased +# v3.8.0 + - [added] Implemented `auth.EmailVerificationLink()` function for generating email verification action links. - [added] Implemented `auth.PasswordResetLink()` function for diff --git a/firebase.go b/firebase.go index 27747858..8a8b78d7 100644 --- a/firebase.go +++ b/firebase.go @@ -39,7 +39,7 @@ import ( var defaultAuthOverrides = make(map[string]interface{}) // Version of the Firebase Go Admin SDK. -const Version = "3.7.0" +const Version = "3.8.0" // firebaseEnvName is the name of the environment variable with the Config. const firebaseEnvName = "FIREBASE_CONFIG"