From c7eca8917e106cb7993ee0c269c58e0dba8ecbef Mon Sep 17 00:00:00 2001 From: Dylan Piercey Date: Mon, 1 Mar 2021 10:21:14 -0700 Subject: [PATCH] chore: publish --- CHANGELOG.md | 11 +++++++++++ lerna.json | 2 +- packages/babel-utils/CHANGELOG.md | 8 ++++++++ packages/babel-utils/package.json | 4 ++-- packages/compiler/CHANGELOG.md | 11 +++++++++++ packages/compiler/package.json | 6 +++--- packages/marko/CHANGELOG.md | 11 +++++++++++ packages/marko/package.json | 6 +++--- packages/translator-default/CHANGELOG.md | 8 ++++++++ packages/translator-default/package.json | 8 ++++---- 10 files changed, 62 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 448614010..8ea307455 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.2.0](https://github.com/marko-js/marko/compare/v5.1.21...v5.2.0) (2021-03-01) + + +### Features + +* move taglib apis into compiler source code ([f7cbb1b](https://github.com/marko-js/marko/commit/f7cbb1b5719ce767b7970ca7264a081010e8e65a)) + + + + + ## [5.1.21](https://github.com/marko-js/marko/compare/v5.1.20...v5.1.21) (2021-03-01) diff --git a/lerna.json b/lerna.json index b9e98cfb6..a54ada31d 100644 --- a/lerna.json +++ b/lerna.json @@ -13,5 +13,5 @@ "packages/*/test/**", "**/*.md" ], - "version": "5.1.21" + "version": "5.2.0" } diff --git a/packages/babel-utils/CHANGELOG.md b/packages/babel-utils/CHANGELOG.md index 32831ad22..f1d381309 100644 --- a/packages/babel-utils/CHANGELOG.md +++ b/packages/babel-utils/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.2.0](https://github.com/marko-js/marko/tree/master/packages/babel-utils/compare/v5.1.21...v5.2.0) (2021-03-01) + +**Note:** Version bump only for package @marko/babel-utils + + + + + ## [5.1.21](https://github.com/marko-js/marko/tree/master/packages/babel-utils/compare/v5.1.20...v5.1.21) (2021-03-01) diff --git a/packages/babel-utils/package.json b/packages/babel-utils/package.json index 23f68e3e7..74c2954f9 100644 --- a/packages/babel-utils/package.json +++ b/packages/babel-utils/package.json @@ -1,7 +1,7 @@ { "name": "@marko/babel-utils", "description": "Utilities for use with Marko babel plugins.", - "version": "5.1.21", + "version": "5.2.0", "author": "Dylan Piercey ", "bugs": "https://github.com/marko-js/marko/issues/new?template=Bug_report.md", "dependencies": { @@ -9,7 +9,7 @@ "jsesc": "^2.5.2" }, "devDependencies": { - "@marko/compiler": "^5.1.21" + "@marko/compiler": "^5.2.0" }, "files": [ "dist", diff --git a/packages/compiler/CHANGELOG.md b/packages/compiler/CHANGELOG.md index 5cfb4094a..e6492d7f6 100644 --- a/packages/compiler/CHANGELOG.md +++ b/packages/compiler/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.2.0](https://github.com/marko-js/marko/tree/master/packages/compiler/compare/v5.1.21...v5.2.0) (2021-03-01) + + +### Features + +* move taglib apis into compiler source code ([f7cbb1b](https://github.com/marko-js/marko/tree/master/packages/compiler/commit/f7cbb1b5719ce767b7970ca7264a081010e8e65a)) + + + + + ## [5.1.21](https://github.com/marko-js/marko/tree/master/packages/compiler/compare/v5.1.20...v5.1.21) (2021-03-01) **Note:** Version bump only for package @marko/compiler diff --git a/packages/compiler/package.json b/packages/compiler/package.json index a208add76..5373a41ad 100644 --- a/packages/compiler/package.json +++ b/packages/compiler/package.json @@ -1,7 +1,7 @@ { "name": "@marko/compiler", "description": "Marko template to JS compiler.", - "version": "5.1.21", + "version": "5.2.0", "author": "Dylan Piercey ", "bugs": "https://github.com/marko-js/marko/issues/new?template=Bug_report.md", "dependencies": { @@ -13,7 +13,7 @@ "@babel/runtime": "^7.7.7", "@babel/traverse": "^7.7.4", "@babel/types": "^7.7.4", - "@marko/babel-utils": "^5.1.21", + "@marko/babel-utils": "^5.2.0", "complain": "^1.6.0", "enhanced-resolve": "5.0.0", "he": "^1.1.0", @@ -25,7 +25,7 @@ "strip-ansi": "^5.2.0" }, "devDependencies": { - "@marko/translator-default": "^5.1.21" + "@marko/translator-default": "^5.2.0" }, "files": [ "dist", diff --git a/packages/marko/CHANGELOG.md b/packages/marko/CHANGELOG.md index 31da29542..c05f219d2 100644 --- a/packages/marko/CHANGELOG.md +++ b/packages/marko/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.2.0](https://github.com/marko-js/marko/compare/v5.1.21...v5.2.0) (2021-03-01) + + +### Features + +* move taglib apis into compiler source code ([f7cbb1b](https://github.com/marko-js/marko/commit/f7cbb1b5719ce767b7970ca7264a081010e8e65a)) + + + + + ## [5.1.20](https://github.com/marko-js/marko/compare/v5.1.19...v5.1.20) (2021-02-26) diff --git a/packages/marko/package.json b/packages/marko/package.json index 9e194317f..aeec35826 100644 --- a/packages/marko/package.json +++ b/packages/marko/package.json @@ -1,11 +1,11 @@ { "name": "marko", - "version": "5.1.20", + "version": "5.2.0", "license": "MIT", "description": "UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.", "dependencies": { - "@marko/compiler": "^5.1.20", - "@marko/translator-default": "^5.1.20", + "@marko/compiler": "^5.2.0", + "@marko/translator-default": "^5.2.0", "app-module-path": "^2.2.0", "argly": "^1.0.0", "browser-refresh-client": "1.1.4", diff --git a/packages/translator-default/CHANGELOG.md b/packages/translator-default/CHANGELOG.md index e1c0d1c28..365106fa4 100644 --- a/packages/translator-default/CHANGELOG.md +++ b/packages/translator-default/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.2.0](https://github.com/marko-js/marko/tree/master/packages/translator-default/compare/v5.1.21...v5.2.0) (2021-03-01) + +**Note:** Version bump only for package @marko/translator-default + + + + + ## [5.1.21](https://github.com/marko-js/marko/tree/master/packages/translator-default/compare/v5.1.20...v5.1.21) (2021-03-01) **Note:** Version bump only for package @marko/translator-default diff --git a/packages/translator-default/package.json b/packages/translator-default/package.json index e6a4ade56..ddcb893cf 100644 --- a/packages/translator-default/package.json +++ b/packages/translator-default/package.json @@ -1,18 +1,18 @@ { "name": "@marko/translator-default", "description": "Translates Marko templates to the default Marko runtime.", - "version": "5.1.21", + "version": "5.2.0", "author": "Dylan Piercey ", "bugs": "https://github.com/marko-js/marko/issues/new?template=Bug_report.md", "dependencies": { "@babel/runtime": "^7.7.7", - "@marko/babel-utils": "^5.1.21", + "@marko/babel-utils": "^5.2.0", "escape-string-regexp": "^4.0.0", "self-closing-tags": "^1.0.1" }, "devDependencies": { - "@marko/compiler": "^5.1.21", - "marko": "^5.1.20" + "@marko/compiler": "^5.2.0", + "marko": "^5.2.0" }, "files": [ "dist"