From ec3a37abe6ecb9dc688c2e06e169f502662f00b6 Mon Sep 17 00:00:00 2001 From: Liam Baker Date: Tue, 25 Oct 2022 10:24:10 +0200 Subject: [PATCH] chore: upgrade release ref --- CHANGELOG.md | 6 ++++++ package.json | 3 ++- projects/ng-date-interval/package.json | 6 +++--- tsconfig.json | 3 ++- 4 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 65ccd98..a3965b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# [2.2.0](https://github.com/lamabiker/ng-date-interval/compare/v2.1.1...v2.2.0) (2022-10-25) + +### Features + +- updated `Angular` to `14`. + # [2.1.1](https://github.com/lamabiker/ng-date-interval/compare/v2.1.0...v2.1.1) (2021-08-30) ### Features diff --git a/package.json b/package.json index 5b260a6..3bcb83d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ng-date-interval", - "version": "2.1.1", + "version": "2.2.0", "author": "Liam Baker (@lamabiker)", "license": "MIT", "description": "Displaying date interval sentences with Angular, i.e From March to April 2020, Since June 16, 2021", @@ -10,6 +10,7 @@ "adjust-version": "npm run adjust-version:main && npm run adjust-version:lib", "build:demo": "ng build ng-date-interval-showcase --base-href='https://lamabiker.github.io/ng-date-interval/'", "build:lib": "npm run copy:readme && ng build ng-date-interval --configuration production", + "build-lib": "ng build ng-date-interval --configuration production", "build": "npm run build:lib && npm run build:demo", "copy:readme": "copyfiles ./README.md ./dist/ng-date-interval", "e2e": "ng e2e", diff --git a/projects/ng-date-interval/package.json b/projects/ng-date-interval/package.json index 32b4f00..aae7eda 100644 --- a/projects/ng-date-interval/package.json +++ b/projects/ng-date-interval/package.json @@ -1,12 +1,12 @@ { "name": "ng-date-interval", - "version": "2.1.1", + "version": "2.2.0", "author": "Liam Baker (@lamabiker)", "license": "MIT", "description": "Displaying date interval sentences with Angular, i.e From March to April 2020, Since June 16, 2021", "peerDependencies": { - "@angular/common": "^12.2.3", - "@angular/core": "^12.2.3" + "@angular/common": "^14.2.7", + "@angular/core": "^14.2.7" }, "repository": { "type": "git", diff --git a/tsconfig.json b/tsconfig.json index 7774ad2..b2e7aad 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -14,7 +14,8 @@ "typeRoots": ["node_modules/@types"], "lib": ["es2018", "dom"], "paths": { - "ng-date-interval": ["dist/ng-date-interval/ng-date-interval", "dist/ng-date-interval"] + "ng-date-interval": ["projects/ng-date-interval/src/public-api", "dist/ng-date-interval"], + "ng-date-interval-showcase": ["projects/ng-date-interval-showcase/src/public-api", "dist/ng-date-interval-showcase"] }, "resolveJsonModule": true, "esModuleInterop": true