From 150a8551359f818ce5c2edf6acbc02d48ba98747 Mon Sep 17 00:00:00 2001 From: Hiranya Jayathilaka Date: Wed, 21 Aug 2019 10:38:49 -0700 Subject: [PATCH] Bumped version to 2.18.0 (#333) * Bumped version to 2.18.0 * Removing extra whitespace --- CHANGELOG.md | 10 ++++++++++ firebase_admin/__about__.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5fc1a759e..0c6378f49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ - +# v2.18.0 + +- [added] Added support for specifying the analytics label for notifications. +- [added] Added support for arbitrary key-value pairs in `messaging.ApsAlert`. +- [changed] The `WebpushFcmOptions` type is now deprecated. Developers should use + the PEP8 compliant type name `WebpushFCMOptions` instead. +- [added] Developers can now test their Database API calls by directing the + SDK traffic to the RTDB emulator. Set the `FIREBASE_DATABASE_EMULATOR_HOST` + environment variable to specify the emulator endpoint in `host:port` format. + # v2.17.0 - [added] Added new `send_all()` and `send_multicast()` APIs to the diff --git a/firebase_admin/__about__.py b/firebase_admin/__about__.py index a5141c5e3..5a2f77e32 100644 --- a/firebase_admin/__about__.py +++ b/firebase_admin/__about__.py @@ -14,7 +14,7 @@ """About information (version, etc) for Firebase Admin SDK.""" -__version__ = '2.17.0' +__version__ = '2.18.0' __title__ = 'firebase_admin' __author__ = 'Firebase' __license__ = 'Apache License 2.0'