Skip to content

Commit

Permalink
chore: bump version ranges, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
mnahkies committed Jan 5, 2025
1 parent 2816d2c commit 6b769ed
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
node-version: [22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.13.1
22.12.0
10 changes: 10 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# 19.0.0 - 2025-01-05
- Support Angular 19 (#106)

*BREAKING CHANGES:*
- `QrCodeComponent` and `QrCodeDirective` are now `standalone` components
- `QrCodeModule` has been removed

See the [readme](https://github.com/mnahkies/ng-qrcode#importing) for instructions on how to import the
components correctly after these changes, but **tldr; replace imports of `QrCodeModule` with `QrCodeComponent`**

# 18.0.0 - 2024-05-25
- Support Angular 18 (#98)
- Add new inputs `style` / `styleClass` (#88)
Expand Down
6 changes: 3 additions & 3 deletions projects/ng-qrcode/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ng-qrcode",
"description": "Simple AOT compatible QR code generator for your Angular project.",
"version": "18.0.0",
"version": "19.0.0",
"license": "MIT",
"author": {
"name": "Michael Nahkies",
Expand All @@ -19,8 +19,8 @@
"tslib": "^2.6.2"
},
"peerDependencies": {
"@angular/common": ">=18 <19",
"@angular/core": ">=18 <19"
"@angular/common": ">=19 <20",
"@angular/core": ">=19 <20"
},
"keywords": [
"qr",
Expand Down

0 comments on commit 6b769ed

Please sign in to comment.