diff --git a/CHANGELOG.md b/CHANGELOG.md index cfbe9f0cf..ea3a50a47 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# [11.1.1](https://github.com/IgniteUI/igniteui-cli/compare/v11.1.0...v11.1.1) (2023-04-11) + +* Changing the babel function call by @valadzhov in https://github.com/IgniteUI/igniteui-cli/pull/1113 +* Adding the $surface argument by @valadzhov in https://github.com/IgniteUI/igniteui-cli/pull/1114 +* Separate config files for the WebComponents application and the tests by @valadzhov in https://github.com/IgniteUI/igniteui-cli/pull/1111 + + # [11.1.0](https://github.com/IgniteUI/igniteui-cli/compare/v11.0.2...v11.1.0) (2023-03-23) 🎉 This update includes: diff --git a/packages/cli/package.json b/packages/cli/package.json index 04ba3ea67..e2c8354fd 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "igniteui-cli", - "version": "11.1.0", + "version": "11.1.1", "description": "CLI tool for creating Ignite UI projects", "keywords": [ "CLI", @@ -78,8 +78,8 @@ "all": true }, "dependencies": { - "@igniteui/angular-templates": "~15.1.1110", - "@igniteui/cli-core": "~11.1.0", + "@igniteui/angular-templates": "~15.1.1111", + "@igniteui/cli-core": "~11.1.1", "chalk": "^2.3.2", "fs-extra": "^3.0.1", "glob": "^7.1.2", diff --git a/packages/core/package.json b/packages/core/package.json index 9805917b8..45f9f9938 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@igniteui/cli-core", - "version": "11.1.0", + "version": "11.1.1", "description": "Base types and functionality for Ignite UI CLI", "repository": { "type": "git", diff --git a/packages/igx-templates/package.json b/packages/igx-templates/package.json index a64d7708f..1c9103114 100644 --- a/packages/igx-templates/package.json +++ b/packages/igx-templates/package.json @@ -1,6 +1,6 @@ { "name": "@igniteui/angular-templates", - "version": "15.1.1110", + "version": "15.1.1111", "description": "Templates for Ignite UI for Angular projects and components", "repository": { "type": "git", @@ -12,7 +12,7 @@ "author": "Infragistics", "license": "MIT", "dependencies": { - "@igniteui/cli-core": "~11.1.0", + "@igniteui/cli-core": "~11.1.1", "typescript": "~4.7.2" } } diff --git a/packages/ng-schematics/package.json b/packages/ng-schematics/package.json index 0256fcd90..42aa5acc8 100644 --- a/packages/ng-schematics/package.json +++ b/packages/ng-schematics/package.json @@ -1,6 +1,6 @@ { "name": "@igniteui/angular-schematics", - "version": "15.1.1110", + "version": "15.1.1111", "description": "Ignite UI for Angular Schematics for ng new and ng generate", "repository": { "type": "git", @@ -20,8 +20,8 @@ "dependencies": { "@angular-devkit/core": "~14.0.0", "@angular-devkit/schematics": "~14.0.0", - "@igniteui/angular-templates": "~15.1.1110", - "@igniteui/cli-core": "~11.1.0", + "@igniteui/angular-templates": "~15.1.1111", + "@igniteui/cli-core": "~11.1.1", "@schematics/angular": "~14.0.0", "rxjs": "^6.6.3" },