diff --git a/.prettierignore b/.prettierignore index f0cd0db0..1001bfcc 100644 --- a/.prettierignore +++ b/.prettierignore @@ -16,5 +16,6 @@ coverage # extension install md files # - excluded as prettier escapes variables e.g. `${PROJECT_ID}` becomes `\${PROJECT_ID}` +CHANGELOG.md POSTINSTALL.md PREINSTALL.md diff --git a/firestore-stripe-invoices/CHANGELOG.md b/firestore-stripe-invoices/CHANGELOG.md index 21a43e76..4f7ffebf 100644 --- a/firestore-stripe-invoices/CHANGELOG.md +++ b/firestore-stripe-invoices/CHANGELOG.md @@ -1,3 +1,7 @@ +## Version 0.2.0 - 2022-04-26 + +[feat] - Add `invoice.paid`, `invoice.updated` to permitted webhook events list. #356 + ## Version 0.1.6 - 2021-02-11 [feat] - Add `stripeInvoiceUrl` to the invoice object in Cloud Firestore. #132 diff --git a/firestore-stripe-invoices/extension.yaml b/firestore-stripe-invoices/extension.yaml index 4a389f58..7f005d46 100644 --- a/firestore-stripe-invoices/extension.yaml +++ b/firestore-stripe-invoices/extension.yaml @@ -13,7 +13,7 @@ # limitations under the License. name: firestore-stripe-invoices -version: 0.1.6 +version: 0.2.0 specVersion: v1beta displayName: Send Invoices using Stripe diff --git a/firestore-stripe-invoices/functions/lib/index.js b/firestore-stripe-invoices/functions/lib/index.js index d36ef53c..c72f57bb 100644 --- a/firestore-stripe-invoices/functions/lib/index.js +++ b/firestore-stripe-invoices/functions/lib/index.js @@ -50,7 +50,7 @@ const stripe = new stripe_1.default(config_1.default.stripeSecretKey, { // https://stripe.com/docs/building-plugins#setappinfo appInfo: { name: 'Firebase firestore-stripe-invoices', - version: '0.1.6', + version: '0.2.0', }, }); admin.initializeApp(); diff --git a/firestore-stripe-invoices/functions/src/index.ts b/firestore-stripe-invoices/functions/src/index.ts index 7b5fd656..9c4a83be 100644 --- a/firestore-stripe-invoices/functions/src/index.ts +++ b/firestore-stripe-invoices/functions/src/index.ts @@ -28,7 +28,7 @@ const stripe = new Stripe(config.stripeSecretKey, { // https://stripe.com/docs/building-plugins#setappinfo appInfo: { name: 'Firebase firestore-stripe-invoices', - version: '0.1.6', + version: '0.2.0', }, });