Skip to content

Commit

Permalink
chore(release): 18.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tomastrajan committed Jul 12, 2024
1 parent 686e877 commit 56d7e0a
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 7 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [18.2.0](https://github.com/angular-extensions/elements/compare/v18.1.0...v18.2.0) (2024-07-12)

### Features

- **demo:** add docs for standalone approach ([686e877](https://github.com/angular-extensions/elements/commit/686e87791a5967a30d79019ab38c1f90ef6471c5))
- **demo:** add standalone code examples ([c2c51b7](https://github.com/angular-extensions/elements/commit/c2c51b7a88720f39b3a2da30650f92ed7a088857))
- **demo:** standardize / simplify example impl ([c480cf9](https://github.com/angular-extensions/elements/commit/c480cf9a02a291a91a9b7b89f3a8eafc7fced300))
- **lib:** add standalone support for testing ([634be3f](https://github.com/angular-extensions/elements/commit/634be3fe16fcbc9247825c01719425d0c3805709))

## [18.1.0](https://github.com/angular-extensions/elements/compare/v18.0.0...v18.1.0) (2024-07-11)

### Features
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@angular-extensions/elements",
"version": "18.1.0",
"version": "18.2.0",
"scripts": {
"ng": "ng",
"prestart": "npm run build:copy-changelog",
Expand All @@ -17,7 +17,7 @@
"build:copy-changelog": "cpx CHANGELOG.md projects/elements-demo/src/assets",
"format:write": "prettier projects/**/*.{ts,json,md} --write",
"format:test": "prettier projects/**/*.{ts,json,md} --list-different",
"release": "npm run build:copy-changelog && standard-version -a && git push --follow-tags origin master",
"release": "standard-version -a && npm run build:copy-changelog && git add projects/elements-demo/src/assets/CHANGELOG.md && git push --follow-tags origin master",
"analyze": "ng build elements-demo --stats-json && webpack-bundle-analyzer ./dist/elements-demo/stats.json",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate && node sync-contributors.js",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export const environment = {
// version:start
version: '18.1.0',
version: '18.2.0',
// version:end
production: true,
};
2 changes: 1 addition & 1 deletion projects/elements-demo/src/environments/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

export const environment = {
// version:start
version: '18.1.0',
version: '18.2.0',
// version:end
production: false,
};
Expand Down
2 changes: 1 addition & 1 deletion projects/elements/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@angular-extensions/elements",
"version": "18.1.0",
"version": "18.2.0",
"peerDependencies": {
"@angular/common": ">=18",
"@angular/core": ">=18",
Expand Down

0 comments on commit 56d7e0a

Please sign in to comment.