From c31d31fa76cfe8f31155cc9cffaaef898657df6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Pokrywka?= Date: Wed, 18 Dec 2024 18:22:37 +0100 Subject: [PATCH] Bumped to 0.6.1 --- CHANGES.md | 2 +- README.md | 2 +- crates/vertigo-cli/Cargo.toml | 4 ++-- crates/vertigo-macro/Cargo.toml | 2 +- crates/vertigo/Cargo.toml | 4 ++-- demo/app/Cargo.toml | 4 ++-- examples/counter/Cargo.toml | 4 ++-- examples/router/Cargo.toml | 4 ++-- examples/trafficlights/Cargo.toml | 4 ++-- tutorial.md | 2 +- 10 files changed, 16 insertions(+), 16 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 26117b81..4032765a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,7 +1,7 @@ -## Unreleased +## 0.6.1 - 2024-12-18 ### Added diff --git a/README.md b/README.md index 918f496e..5bd0a3e4 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ A reactive Real-DOM library with SSR for Rust [![crates.io](https://img.shields.io/crates/v/vertigo)](https://crates.io/crates/vertigo) [![Documentation](https://docs.rs/vertigo/badge.svg)](https://docs.rs/vertigo) ![MIT or Apache 2.0 licensed](https://img.shields.io/crates/l/vertigo.svg) -[![Dependency Status](https://deps.rs/crate/vertigo/0.6.0/status.svg)](https://deps.rs/crate/vertigo/0.6.0) +[![Dependency Status](https://deps.rs/crate/vertigo/0.6.1/status.svg)](https://deps.rs/crate/vertigo/0.6.1) [![CI](https://github.com/vertigo-web/vertigo/actions/workflows/pipeline.yaml/badge.svg)](https://github.com/vertigo-web/vertigo/actions/workflows/pipeline.yaml) [![downloads](https://img.shields.io/crates/d/vertigo.svg)](https://crates.io/crates/vertigo) diff --git a/crates/vertigo-cli/Cargo.toml b/crates/vertigo-cli/Cargo.toml index 92e975e8..42a4ddbc 100644 --- a/crates/vertigo-cli/Cargo.toml +++ b/crates/vertigo-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vertigo-cli" -version = "0.6.0" +version = "0.6.1" authors = ["Grzegorz Szeliga ", "Michał Pokrywka "] description = "Reactive Real-DOM library with SSR for Rust - packaging/serving tool" categories = ["command-line-utilities", "development-tools", "development-tools::build-utils", "wasm", "web-programming"] @@ -39,4 +39,4 @@ tokio-stream = "0.1" tower-http = { version = "0.4", features = ["fs"] } tokio-retry = "0.3" wasmtime = "19.0" -vertigo = { path = "../vertigo", version = "0.6.0" } +vertigo = { path = "../vertigo", version = "0.6.1" } diff --git a/crates/vertigo-macro/Cargo.toml b/crates/vertigo-macro/Cargo.toml index ea89d535..a3c8b7bd 100644 --- a/crates/vertigo-macro/Cargo.toml +++ b/crates/vertigo-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vertigo-macro" -version = "0.6.0" +version = "0.6.1" authors = ["Grzegorz Szeliga ", "Michał Pokrywka "] description = "Reactive Real-DOM library with SSR for Rust - macros" edition = "2021" diff --git a/crates/vertigo/Cargo.toml b/crates/vertigo/Cargo.toml index 5c40b940..f43dd5ba 100644 --- a/crates/vertigo/Cargo.toml +++ b/crates/vertigo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vertigo" -version = "0.6.0" +version = "0.6.1" authors = ["Grzegorz Szeliga ", "Michał Pokrywka "] description = "Reactive Real-DOM library with SSR for Rust" readme = "README.md" @@ -15,4 +15,4 @@ edition = "2021" [dependencies] chrono = { version = "0.4", default-features = false, features = ["std"], optional = true } log = { version = "0.4", features = ["std"] } -vertigo-macro = { path = "../../crates/vertigo-macro", version = "0.6.0" } +vertigo-macro = { path = "../../crates/vertigo-macro", version = "0.6.1" } diff --git a/demo/app/Cargo.toml b/demo/app/Cargo.toml index 469fd6a8..0f5fa5dd 100644 --- a/demo/app/Cargo.toml +++ b/demo/app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vertigo-demo" -version = "0.6.0" +version = "0.6.1" authors = ["Grzegorz Szeliga ", "Michał Pokrywka "] edition = "2021" @@ -9,4 +9,4 @@ crate-type = ["cdylib", "rlib"] [dependencies] log = "0.4.17" -vertigo = { path = "../../crates/vertigo", version = "0.6.0" } +vertigo = { path = "../../crates/vertigo", version = "0.6.1" } diff --git a/examples/counter/Cargo.toml b/examples/counter/Cargo.toml index 9374d97d..6d1f8a74 100644 --- a/examples/counter/Cargo.toml +++ b/examples/counter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vertigo-example-counter" -version = "0.6.0" +version = "0.6.1" authors = ["Grzegorz Szeliga ", "Michał Pokrywka "] edition = "2021" @@ -8,4 +8,4 @@ edition = "2021" crate-type = ["cdylib", "rlib"] [dependencies] -vertigo = { path = "../../crates/vertigo", version = "0.6.0" } +vertigo = { path = "../../crates/vertigo", version = "0.6.1" } diff --git a/examples/router/Cargo.toml b/examples/router/Cargo.toml index 27e2c3e4..cc3cada4 100644 --- a/examples/router/Cargo.toml +++ b/examples/router/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vertigo-example-router" -version = "0.6.0" +version = "0.6.1" authors = ["Grzegorz Szeliga ", "Michał Pokrywka "] edition = "2021" @@ -9,4 +9,4 @@ crate-type = ["cdylib", "rlib"] [dependencies] log = "0.4.14" -vertigo = { path = "../../crates/vertigo", version = "0.6.0" } +vertigo = { path = "../../crates/vertigo", version = "0.6.1" } diff --git a/examples/trafficlights/Cargo.toml b/examples/trafficlights/Cargo.toml index 8950a813..e1a10bc5 100644 --- a/examples/trafficlights/Cargo.toml +++ b/examples/trafficlights/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vertigo-example-trafficlights" -version = "0.6.0" +version = "0.6.1" authors = ["Grzegorz Szeliga ", "Michał Pokrywka "] edition = "2021" @@ -8,4 +8,4 @@ edition = "2021" crate-type = ["cdylib", "rlib"] [dependencies] -vertigo = { path = "../../crates/vertigo", version = "0.6.0" } +vertigo = { path = "../../crates/vertigo", version = "0.6.1" } diff --git a/tutorial.md b/tutorial.md index 9a4d1b25..f11d5480 100644 --- a/tutorial.md +++ b/tutorial.md @@ -2,7 +2,7 @@ -*Up to date with version 0.6.0* +*Up to date with version 0.6.1* ### Table of contents