Skip to content

Commit 6d131c2

Browse files
authored
chore(main): release 0.2.0 (#138)
* chore(main): release 0.2.0 * chore(ci): update lint workflow for improved conventional commit checks - Added missing types (`chore`, `doc`) and scopes (`build`, `cicd`, `docs`, `editing`, `main`, `samples`) to `lint-pr.yml`. - Removed deprecated scope `highlighting` for alignment with supported criteria. * chore(build): simplify release-please configuration - Removed regex-based versioning for `gradle.properties` in `release-please-config.json`. - Updated configuration to directly include `gradle.properties` as an extra file. * chore(build): add version tags for release-please in gradle.properties - Included `x-release-please-start-version` and `x-release-please-end` tags to `pluginVersion` in `gradle.properties`. - These markers enable automated version management with `release-please`.
1 parent a39d191 commit 6d131c2

File tree

3 files changed

+33
-2
lines changed

3 files changed

+33
-2
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.1.0"
2+
".": "0.2.0"
33
}

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11
# Changelog
22

3+
## [0.2.0](https://github.com/ventojs/webstorm-vento/compare/v0.1.0...v0.2.0) (2025-11-16)
4+
5+
6+
### Features
7+
8+
* **clean_up:** add `.editorconfig` and `ktlint` configuration ([83f4ebf](https://github.com/ventojs/webstorm-vento/commit/83f4ebf26474c445f737e43abe06484e560a6558))
9+
* **clean_up:** adjust lexer to handle whitespace and improve tokenization ([fbd8de7](https://github.com/ventojs/webstorm-vento/commit/fbd8de76e8d80d469bc971e2f5af3efdef7ecff6))
10+
* **clean_up:** enhance lexer support for HTML, text, and line handling ([5862f7f](https://github.com/ventojs/webstorm-vento/commit/5862f7f7c2a0a68e25af801fdbba19ab9d9fa8de))
11+
* **comment:** complete comment block support ([#47](https://github.com/ventojs/webstorm-vento/issues/47)) ([2170027](https://github.com/ventojs/webstorm-vento/commit/21700275f44b2d7aee925171b1d3b14635ca1559))
12+
* **echo:** add support for `echo` keyword ([#40](https://github.com/ventojs/webstorm-vento/issues/40)) ([#130](https://github.com/ventojs/webstorm-vento/issues/130)) ([4a5d693](https://github.com/ventojs/webstorm-vento/commit/4a5d69338757b5c0c678414bf63c3c2e688c43f5))
13+
* **function:** add function support ([#48](https://github.com/ventojs/webstorm-vento/issues/48)) ([#131](https://github.com/ventojs/webstorm-vento/issues/131)) ([37812d6](https://github.com/ventojs/webstorm-vento/commit/37812d624ee3d1e5f1cdacfa521a3961c09c43de))
14+
* **html:** introduce HTML language injection and default content block handling ([#65](https://github.com/ventojs/webstorm-vento/issues/65)) ([f456757](https://github.com/ventojs/webstorm-vento/commit/f456757e3e3aec276433dc6f20ef3df484331e23))
15+
* **import-export:** support import and export blocks ([#92](https://github.com/ventojs/webstorm-vento/issues/92)) ([d5378fe](https://github.com/ventojs/webstorm-vento/commit/d5378fe798639a7c5a2816805e8e7209bd37e53c))
16+
* **include:** add support for `include` syntax ([#45](https://github.com/ventojs/webstorm-vento/issues/45)) ([#112](https://github.com/ventojs/webstorm-vento/issues/112)) ([32d96dd](https://github.com/ventojs/webstorm-vento/commit/32d96dd0d87a021c27645ba9c98a350aa61865c2))
17+
* **layout:** add support for `layout` syntax in lexer, parser, and syntax highlighter ([#46](https://github.com/ventojs/webstorm-vento/issues/46)) ([#108](https://github.com/ventojs/webstorm-vento/issues/108)) ([45d6e93](https://github.com/ventojs/webstorm-vento/commit/45d6e932c7c8af2b35c83ae9d54b5ba179c0ec32))
18+
* **lexer:** enhance JavaScript and comment parsing for Vento language ([25cc55e](https://github.com/ventojs/webstorm-vento/commit/25cc55e5377e09130f73d67d17f1991c95036398))
19+
* **parser:** add support for `if`, `else`, and `else if` constructs ([#44](https://github.com/ventojs/webstorm-vento/issues/44)) ([#132](https://github.com/ventojs/webstorm-vento/issues/132)) ([cca641c](https://github.com/ventojs/webstorm-vento/commit/cca641c62d03fd1a20e6b16e1573430be7c8db24))
20+
* **parser:** use js highlighting where possible ([#134](https://github.com/ventojs/webstorm-vento/issues/134)) ([#137](https://github.com/ventojs/webstorm-vento/issues/137)) ([a62befd](https://github.com/ventojs/webstorm-vento/commit/a62befd8ef09d56194a4954114a94f110c2302f0))
21+
* **pipe:** improve pipe handling ([#41](https://github.com/ventojs/webstorm-vento/issues/41)) ([#129](https://github.com/ventojs/webstorm-vento/issues/129)) ([d9c1b54](https://github.com/ventojs/webstorm-vento/commit/d9c1b5453b4d6fabced5d065ac296bef598f12b9))
22+
* **plugin:** add color settings page for Vento highlighting support in `clean_up` ([47763e0](https://github.com/ventojs/webstorm-vento/commit/47763e0fcfd02dbe1d8f7d8ec5e212680e1da34e))
23+
* **set:** add support for Vento `set` blocks ([#42](https://github.com/ventojs/webstorm-vento/issues/42)) ([#104](https://github.com/ventojs/webstorm-vento/issues/104)) ([29c31d3](https://github.com/ventojs/webstorm-vento/commit/29c31d3e776871d62cbaf3c7623bf2f83f1ee1c5))
24+
* **variables:** add support for variable pipe expressions (`|>`) ([fc1fd8c](https://github.com/ventojs/webstorm-vento/commit/fc1fd8ca8a355d2ec0e7c5a1da034a9170f46748)), closes [#39](https://github.com/ventojs/webstorm-vento/issues/39)
25+
26+
27+
### Bug Fixes
28+
29+
* **cicd:** Update release-please-config.json ([659f9e8](https://github.com/ventojs/webstorm-vento/commit/659f9e821a0cc23944ac2a838b5d74b513f0b447))
30+
* **clean_up:** correct typos and improve syntax in HTML demo text ([ab71ff3](https://github.com/ventojs/webstorm-vento/commit/ab71ff3dbddba8d4d470b67e6d6eb27d8e2cd774))
31+
* **deps:** update junit-framework monorepo to v5.13.4 ([#67](https://github.com/ventojs/webstorm-vento/issues/67)) ([f62c4f0](https://github.com/ventojs/webstorm-vento/commit/f62c4f006259c2a22cde364e8e82cc5b970d0482))
32+
* **deps:** update junit-framework monorepo to v6.0.1 ([#125](https://github.com/ventojs/webstorm-vento/issues/125)) ([5bfc342](https://github.com/ventojs/webstorm-vento/commit/5bfc342876f845c2f922c687e71acc1d6d7382da))
33+
334
## [Unreleased]
435

536
## [0.1.0] - 2025-10-17

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2025 Florian Hehlen & Óscar Otero
2+
# Copyright (c) 2025 Florian Hehlen & �scar Otero
33
# All rights reserved.
44
#
55
pluginGroup=org.js.vento.plugin

0 commit comments

Comments
 (0)