Skip to content

Commit

Permalink
chore(docs): update readme with the new logo
Browse files Browse the repository at this point in the history
  • Loading branch information
richnologies committed Jun 25, 2021
1 parent 07d8a18 commit cb13b41
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 12.2.1 - 2021-06-25

- Update README.md with new Logo

## 12.2.0 - 2021-06-19

- Add support for Acss Debit Payments
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@
"scripts": {
"ng": "ng",
"build:lib": "ng-packagr -p projects/ngx-stripe/ng-package.json",
"copy:docs": "copyfiles docs/**/*.png dist/ngx-stripe",
"build:app": "ng build ngx-stripe-tester --prod",
"pack:lib": "cd dist/ngx-stripe && npm pack",
"package": "npm run build:lib && npm run pack:lib",
"package": "npm run build:lib && npm run copy:docs && npm run pack:lib",
"publish": "npm publish dist/ngx-stripe/ngx-stripe-X.X.X.tgz",
"start": "ng serve ngx-stripe-tester",
"test": "ng test ngx-stripe",
Expand Down Expand Up @@ -59,6 +60,7 @@
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"codelyzer": "^6.0.0",
"copyfiles": "^2.4.1",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.2",
Expand Down
8 changes: 3 additions & 5 deletions projects/ngx-stripe/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ An Angular 6+ wrapper for StripeJS elements
[![license](https://img.shields.io/npm/l/express.svg)](https://www.npmjs.com/package/ngx-stripe)

<h1 align="center">
<a href="https://docs.ngx-stripe.com">
<img width="160" valign="bottom" src="../../docs/logos/ngx-stripe-logo.png">
</a>
<img width="160" valign="bottom" src="./docs/logos/ngx-stripe-logo.png">
</h1>

Ngx Stripe is a thin wrapper around [`Stripe Elements`](https://stripe.com/docs/stripe-js). It allows adding Elements to any Angular app.
Expand Down Expand Up @@ -210,10 +208,10 @@ Your sponsorship helps us keep a team of maintainers actively working to improve

<p float="left">
<a href="https://stripe.com" rel="nofollow noopener noreferrer" target="_blank">
<img src="../../docs/logos/stripe_blurple.png" width="210" />
<img src="./docs/logos/stripe_blurple.png" width="210" />
</a>
<a href="https://www.psi-mobile.com" rel="nofollow noopener noreferrer" target="_blank">
<img src="../../docs/logos/psi-logo.png" width="170" />
<img src="./docs/logos/psi-logo.png" width="170" />
</a>
</p>

Expand Down
2 changes: 1 addition & 1 deletion projects/ngx-stripe/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngx-stripe",
"version": "12.2.0",
"version": "12.2.1",
"repository": {
"type": "git",
"url": "https://github.com/richnologies/ngx-stripe"
Expand Down
2 changes: 1 addition & 1 deletion projects/ngx-stripe/src/lib/ngx-stripe.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const components = [

const directives = [StripeCardGroupDirective];

const currentVersion = '12.2.0';
const currentVersion = '12.2.1';

@NgModule({
declarations: [...components, ...directives],
Expand Down

0 comments on commit cb13b41

Please sign in to comment.