Skip to content
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
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.2.0](https://github.com/andreiltd/componentize-qjs/compare/v0.1.0...v0.2.0) - 2026-05-05

### Bug Fixes

- *(ci)* fix release workflow permissions ([#17](https://github.com/andreiltd/componentize-qjs/pull/17))
- *(deps)* update rust dependencies ([#9](https://github.com/andreiltd/componentize-qjs/pull/9))
- *(deps)* update rust dependencies to v44 ([#14](https://github.com/andreiltd/componentize-qjs/pull/14))
- *(ci)* pin actions ([#6](https://github.com/andreiltd/componentize-qjs/pull/6))
- *(ci)* wire release asset publishing through release-plz ([#4](https://github.com/andreiltd/componentize-qjs/pull/4))

### Features

- add runtime optimized for size ([#15](https://github.com/andreiltd/componentize-qjs/pull/15))
- switch from JS script to ES modules ([#8](https://github.com/andreiltd/componentize-qjs/pull/8))

### Miscellaneous

- *(ci)* add npm publish job ([#16](https://github.com/andreiltd/componentize-qjs/pull/16))
- *(deps)* update dependency @napi-rs/cli to v3.6.2 ([#10](https://github.com/andreiltd/componentize-qjs/pull/10))
- *(deps)* update dependency node to v24 ([#12](https://github.com/andreiltd/componentize-qjs/pull/12))
- *(deps)* update github ci dependencies ([#11](https://github.com/andreiltd/componentize-qjs/pull/11))
- *(deps)* update dependency vitest to v4 ([#13](https://github.com/andreiltd/componentize-qjs/pull/13))
- *(ci)* add renovate bot config ([#7](https://github.com/andreiltd/componentize-qjs/pull/7))
8 changes: 4 additions & 4 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ default-members = [".", "napi"]
resolver = "2"

[workspace.package]
version = "0.1.0"
version = "0.2.0"
edition = "2024"
rust-version = "1.94"
license = "Apache-2.0"
repository = "https://github.com/andreiltd/componentize-qjs"
homepage = "https://github.com/andreiltd/componentize-qjs"

[workspace.dependencies]
componentize-qjs = { path = "crates/core", version = "0.1.0" }
componentize-qjs-cli = { path = ".", version = "0.1.0" }
componentize-qjs = { path = "crates/core", version = "0.2.0" }
componentize-qjs-cli = { path = ".", version = "0.2.0" }
anyhow = "1.0"
clap = { version = "4", features = ["derive"] }
tokio = { version = "1", default-features = false, features = ["rt", "macros"] }
Expand Down
21 changes: 21 additions & 0 deletions crates/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.2.0](https://github.com/andreiltd/componentize-qjs/compare/componentize-qjs-v0.1.0...componentize-qjs-v0.2.0) - 2026-05-05

### Bug Fixes

- *(deps)* update rust dependencies ([#9](https://github.com/andreiltd/componentize-qjs/pull/9))
- *(deps)* update rust dependencies to v44 ([#14](https://github.com/andreiltd/componentize-qjs/pull/14))
- *(ci)* wire release asset publishing through release-plz ([#4](https://github.com/andreiltd/componentize-qjs/pull/4))

### Features

- add runtime optimized for size ([#15](https://github.com/andreiltd/componentize-qjs/pull/15))
- switch from JS script to ES modules ([#8](https://github.com/andreiltd/componentize-qjs/pull/8))