Skip to content

Commit

Permalink
Bumped to 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sfisol committed Dec 18, 2024
1 parent 76dc831 commit c31d31f
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- markdownlint-configure-file { "no-duplicate-heading": { "siblings_only": true } } -->

<!-- markdownlint-disable-next-line first-line-h1 -->
## Unreleased
## 0.6.1 - 2024-12-18

### Added

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
4 changes: 2 additions & 2 deletions crates/vertigo-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vertigo-cli"
version = "0.6.0"
version = "0.6.1"
authors = ["Grzegorz Szeliga <szeligagrzegorz@gmail.com>", "Michał Pokrywka <wolfmoon@o2.pl>"]
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"]
Expand Down Expand Up @@ -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" }
2 changes: 1 addition & 1 deletion crates/vertigo-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vertigo-macro"
version = "0.6.0"
version = "0.6.1"
authors = ["Grzegorz Szeliga <szeligagrzegorz@gmail.com>", "Michał Pokrywka <wolfmoon@o2.pl>"]
description = "Reactive Real-DOM library with SSR for Rust - macros"
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions crates/vertigo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vertigo"
version = "0.6.0"
version = "0.6.1"
authors = ["Grzegorz Szeliga <szeligagrzegorz@gmail.com>", "Michał Pokrywka <wolfmoon@o2.pl>"]
description = "Reactive Real-DOM library with SSR for Rust"
readme = "README.md"
Expand All @@ -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" }
4 changes: 2 additions & 2 deletions demo/app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vertigo-demo"
version = "0.6.0"
version = "0.6.1"
authors = ["Grzegorz Szeliga <szeligagrzegorz@gmail.com>", "Michał Pokrywka <wolfmoon@o2.pl>"]
edition = "2021"

Expand All @@ -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" }
4 changes: 2 additions & 2 deletions examples/counter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "vertigo-example-counter"
version = "0.6.0"
version = "0.6.1"
authors = ["Grzegorz Szeliga <szeligagrzegorz@gmail.com>", "Michał Pokrywka <wolfmoon@o2.pl>"]
edition = "2021"

[lib]
crate-type = ["cdylib", "rlib"]

[dependencies]
vertigo = { path = "../../crates/vertigo", version = "0.6.0" }
vertigo = { path = "../../crates/vertigo", version = "0.6.1" }
4 changes: 2 additions & 2 deletions examples/router/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vertigo-example-router"
version = "0.6.0"
version = "0.6.1"
authors = ["Grzegorz Szeliga <szeligagrzegorz@gmail.com>", "Michał Pokrywka <wolfmoon@o2.pl>"]
edition = "2021"

Expand All @@ -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" }
4 changes: 2 additions & 2 deletions examples/trafficlights/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "vertigo-example-trafficlights"
version = "0.6.0"
version = "0.6.1"
authors = ["Grzegorz Szeliga <szeligagrzegorz@gmail.com>", "Michał Pokrywka <wolfmoon@o2.pl>"]
edition = "2021"

[lib]
crate-type = ["cdylib", "rlib"]

[dependencies]
vertigo = { path = "../../crates/vertigo", version = "0.6.0" }
vertigo = { path = "../../crates/vertigo", version = "0.6.1" }
2 changes: 1 addition & 1 deletion tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!-- markdownlint-disable no-inline-html -->

<!-- markdownlint-disable-next-line no-emphasis-as-heading -->
*Up to date with version 0.6.0*
*Up to date with version 0.6.1*

<!-- markdownlint-disable-next-line heading-increment -->
### Table of contents
Expand Down

0 comments on commit c31d31f

Please sign in to comment.