From 6b769edb624e968619fd242ad2c4434ba9d47baf Mon Sep 17 00:00:00 2001 From: Michael Nahkies Date: Sun, 5 Jan 2025 15:53:31 +0000 Subject: [PATCH] chore: bump version ranges, update changelog --- .github/workflows/ci.yml | 2 +- .nvmrc | 2 +- CHANGES.md | 10 ++++++++++ projects/ng-qrcode/package.json | 6 +++--- 4 files changed, 15 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 60ff6e8..dc2e032 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: diff --git a/.nvmrc b/.nvmrc index f203ab8..1d9b783 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -20.13.1 +22.12.0 diff --git a/CHANGES.md b/CHANGES.md index 90e3f4b..18fa426 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -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) diff --git a/projects/ng-qrcode/package.json b/projects/ng-qrcode/package.json index 64a9ba0..0e5c6e3 100644 --- a/projects/ng-qrcode/package.json +++ b/projects/ng-qrcode/package.json @@ -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", @@ -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",