Skip to content

Commit b38f98e

Browse files
chore(firestore-stripe-invoices): 2022-04-26 release (#378)
* chore(firestore-stripe-invoices): 2022-04-26 release * chore: Add CHANGELOG.md to .prettierignore
1 parent 264866e commit b38f98e

File tree

5 files changed

+8
-3
lines changed

5 files changed

+8
-3
lines changed

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,6 @@ coverage
1616

1717
# extension install md files
1818
# - excluded as prettier escapes variables e.g. `${PROJECT_ID}` becomes `\${PROJECT_ID}`
19+
CHANGELOG.md
1920
POSTINSTALL.md
2021
PREINSTALL.md

firestore-stripe-invoices/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## Version 0.2.0 - 2022-04-26
2+
3+
[feat] - Add `invoice.paid`, `invoice.updated` to permitted webhook events list. #356
4+
15
## Version 0.1.6 - 2021-02-11
26

37
[feat] - Add `stripeInvoiceUrl` to the invoice object in Cloud Firestore. #132

firestore-stripe-invoices/extension.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
name: firestore-stripe-invoices
16-
version: 0.1.6
16+
version: 0.2.0
1717
specVersion: v1beta
1818

1919
displayName: Send Invoices using Stripe

firestore-stripe-invoices/functions/lib/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

firestore-stripe-invoices/functions/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const stripe = new Stripe(config.stripeSecretKey, {
2828
// https://stripe.com/docs/building-plugins#setappinfo
2929
appInfo: {
3030
name: 'Firebase firestore-stripe-invoices',
31-
version: '0.1.6',
31+
version: '0.2.0',
3232
},
3333
});
3434

0 commit comments

Comments
 (0)