Skip to content

Commit

Permalink
v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
seanchas116 committed Jun 26, 2022
1 parent 497e283 commit 9f1c597
Show file tree
Hide file tree
Showing 10 changed files with 60 additions and 7 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Expand Up @@ -3,6 +3,24 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.4.0](https://github.com/macaron-elements/macaron/compare/v0.3.1...v0.4.0) (2022-06-26)


### Bug Fixes

* **editor:** fix command+scroll and pinch direction ([fb30f30](https://github.com/macaron-elements/macaron/commit/fb30f30820fc808f0eb05e2ddcf47a78387db043))
* remove vw/vh unit from dropdown (fix [#108](https://github.com/macaron-elements/macaron/issues/108)) ([34bd287](https://github.com/macaron-elements/macaron/commit/34bd287b9e3811c128488912da3d62fb60d9872d))


### Features

* **editor:** icons in cursor select options (fix [#116](https://github.com/macaron-elements/macaron/issues/116)) ([09d5927](https://github.com/macaron-elements/macaron/commit/09d5927d3068c827f1e55bc93c1f5180a7d529aa))
* **editor:** insert tool shortcuts + send more analytics ([#117](https://github.com/macaron-elements/macaron/issues/117)) ([a707db9](https://github.com/macaron-elements/macaron/commit/a707db95e5daaf65fa149692655fedb518443a70))





## [0.3.1](https://github.com/macaron-elements/macaron/compare/v0.3.0...v0.3.1) (2022-06-22)

**Note:** Version bump only for package macaron
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Expand Up @@ -5,5 +5,5 @@
"packages/loader-webpack",
"packages/vscode"
],
"version": "0.3.1"
"version": "0.4.0"
}
8 changes: 8 additions & 0 deletions packages/compiler/CHANGELOG.md
Expand Up @@ -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.

# [0.4.0](https://github.com/macaron-elements/macaron/compare/v0.3.1...v0.4.0) (2022-06-26)

**Note:** Version bump only for package @macaron-elements/compiler





# [0.3.0](https://github.com/macaron-elements/macaron/compare/v0.2.0...v0.3.0) (2022-06-22)

**Note:** Version bump only for package @macaron-elements/compiler
Expand Down
2 changes: 1 addition & 1 deletion packages/compiler/package.json
@@ -1,6 +1,6 @@
{
"name": "@macaron-elements/compiler",
"version": "0.3.0",
"version": "0.4.0",
"description": "Macaron compiler",
"homepage": "https://github.com/macaron-elements/macaron/tree/main/packages/compiler#readme",
"bugs": {
Expand Down
8 changes: 8 additions & 0 deletions packages/loader-vite/CHANGELOG.md
Expand Up @@ -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.

# [0.4.0](https://github.com/macaron-elements/macaron/compare/v0.3.1...v0.4.0) (2022-06-26)

**Note:** Version bump only for package @macaron-elements/loader-vite





# [0.3.0](https://github.com/macaron-elements/macaron/compare/v0.2.0...v0.3.0) (2022-06-22)

**Note:** Version bump only for package @macaron-elements/loader-vite
Expand Down
4 changes: 2 additions & 2 deletions packages/loader-vite/package.json
@@ -1,6 +1,6 @@
{
"name": "@macaron-elements/loader-vite",
"version": "0.3.0",
"version": "0.4.0",
"description": "Vite plugin to load Macaron files",
"homepage": "https://github.com/macaron-elements/macaron/tree/main/packages/loader-vite#readme",
"bugs": {
Expand All @@ -14,7 +14,7 @@
"author": "Ryohei Ikegami <iofg2100@gmail.com>",
"main": "index.js",
"dependencies": {
"@macaron-elements/compiler": "^0.3.0"
"@macaron-elements/compiler": "^0.4.0"
},
"publishConfig": {
"access": "public"
Expand Down
8 changes: 8 additions & 0 deletions packages/loader-webpack/CHANGELOG.md
Expand Up @@ -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.

# [0.4.0](https://github.com/macaron-elements/macaron/compare/v0.3.1...v0.4.0) (2022-06-26)

**Note:** Version bump only for package @macaron-elements/loader-webpack





## [0.3.1](https://github.com/macaron-elements/macaron/compare/v0.3.0...v0.3.1) (2022-06-22)

**Note:** Version bump only for package @macaron-elements/loader-webpack
Expand Down
4 changes: 2 additions & 2 deletions packages/loader-webpack/package.json
@@ -1,6 +1,6 @@
{
"name": "@macaron-elements/loader-webpack",
"version": "0.3.1",
"version": "0.4.0",
"description": "Webpack loader for Macaron files",
"homepage": "https://github.com/macaron-elements/macaron/tree/main/packages/loader-webpack#readme",
"bugs": {
Expand All @@ -14,7 +14,7 @@
"author": "Ryohei Ikegami <iofg2100@gmail.com>",
"main": "index.js",
"dependencies": {
"@macaron-elements/compiler": "^0.3.0"
"@macaron-elements/compiler": "^0.4.0"
},
"publishConfig": {
"access": "public"
Expand Down
11 changes: 11 additions & 0 deletions packages/vscode/CHANGELOG.md
Expand Up @@ -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.

# [0.4.0](https://github.com/macaron-elements/macaron/compare/v0.3.1...v0.4.0) (2022-06-26)


### Features

* **editor:** insert tool shortcuts + send more analytics ([#117](https://github.com/macaron-elements/macaron/issues/117)) ([a707db9](https://github.com/macaron-elements/macaron/commit/a707db95e5daaf65fa149692655fedb518443a70))





## [0.3.1](https://github.com/macaron-elements/macaron/compare/v0.3.0...v0.3.1) (2022-06-22)

**Note:** Version bump only for package macaron
Expand Down
2 changes: 1 addition & 1 deletion packages/vscode/package.json
@@ -1,7 +1,7 @@
{
"name": "macaron-vscode",
"displayName": "Macaron",
"version": "0.3.0",
"version": "0.4.0",
"private": true,
"description": "Design tool to create Web Components visually",
"categories": [
Expand Down

1 comment on commit 9f1c597

@vercel
Copy link

@vercel vercel bot commented on 9f1c597 Jun 26, 2022

Choose a reason for hiding this comment

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

Please sign in to comment.