Skip to content

Commit

Permalink
Prepared 0.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
sfisol committed May 1, 2023
1 parent 48871da commit 92024c3
Show file tree
Hide file tree
Showing 20 changed files with 366 additions and 279 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2023-03-01
toolchain: nightly-2023-05-01
target: wasm32-unknown-unknown
components: clippy
override: true
Expand All @@ -70,7 +70,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2023-03-01
toolchain: nightly-2023-05-01
target: wasm32-unknown-unknown
components: clippy
override: true
Expand All @@ -81,7 +81,7 @@ jobs:
- name: vertigo-cli
run: |
cargo build --release -p vertigo-cli
rustup default nightly-2023-03-01
rustup default nightly-2023-05-01
mkdir ../vertigo-cli-test
mv target/release/vertigo ../vertigo-cli-test
cd ../vertigo-cli-test
Expand Down
11 changes: 9 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
<!-- markdownlint-configure-file { "no-duplicate-heading": { "siblings_only": true } } -->

<!-- markdownlint-disable-next-line first-line-h1 -->
## Unreleased
## 0.3.0 - 2023-05-01

### Added

* `dom_element!` macro which returns `DomElement` struct, while `dom!` macro returns `DomNode`
* **Breaking:** `dom_element!` macro which returns `DomElement` struct, while `dom!` macro returns `DomNode` now
* Suspense mechanism
* `on_change` event to `<select>`/`<input>`/`<textarea>`
* Env variables passed to application

### Removed

* vertigo-cli: `Cargo` as lib dependency

## 0.2.0 - 2023-03-25

Expand Down
Loading

0 comments on commit 92024c3

Please sign in to comment.