Skip to content
This repository was archived by the owner on Jan 6, 2025. It is now read-only.

chore: update to 13.0.0-beta.36 with changelog #1373

Merged
merged 1 commit into from
Nov 29, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# [13.0.0-beta.36](https://github.com/angular/flex-layout/compare/12.0.0-beta.35...13.0.0-beta.36) (2021-11-24)

This version adds compatibility with Angular v13, in addition to shifting our publishing practices.
In line with the framework and other Angular libraries, Angular Layout will now publish artifacts in
accordance with Angular Package Format (APF) v13, meaning that we no longer distribute UMD bundles, in
favor of ESM. We also now publish our artifacts using Ivy partial compilation, in an effort to improve
the build experience of our users.

You can read more about this new format on the [Angular docs page](https://angular.io/guide/angular-package-format)
about it.

Many thanks to the contributors of this release, Paul Gschwendtner (@DevVersion), Alan Agius (@alan-agius4),
and Andrew Kushnir (@AndrewKushnir).

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should have included you as well @CaerusKaru! Thanks for all your work on this as well! 🎉

<a name="12.0.0-beta.35"></a>
# [12.0.0-beta.35](https://github.com/angular/flex-layout/compare/12.0.0-beta.34...12.0.0-beta.35) (2021-09-15)

Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "flex-layout-srcs",
"description": "Angular Flex Layout",
"version": "12.0.0-beta.35",
"version": "13.0.0-beta.36",
"homepage": "https://github.com/angular/flex-layout",
"bugs": "https://github.com/angular/flex-layout/issues",
"repository": {
Expand All @@ -24,7 +24,8 @@
"test": "ng test @angular/flex-layout",
"test:ssr": "webpack --config test/webpack-spec-ssr-bundle.js && jasmine --config=test/jasmine-ssr.json",
"lint": "stylelint projects/libs/**/*.scss --config=stylelint-config.json && tslint --project ./tsconfig.json --config tslint.json",
"release": "yarn build && yarn stamp"
"release": "yarn build && yarn stamp",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"private": true,
"requiredAngularVersion": "^13.0.0",
Expand Down Expand Up @@ -55,6 +56,7 @@
"@types/jasmine": "~3.10.0",
"@types/minimatch": "^3.0.5",
"@types/node": "^12.11.1",
"conventional-changelog-cli": "^2.1.1",
"jasmine-core": "~3.10.0",
"karma": "~6.3.0",
"karma-browserstack-launcher": "^1.6.0",
Expand Down
Loading