Skip to content

Commit

Permalink
Bumped to 0.4.3, updated libs
Browse files Browse the repository at this point in the history
  • Loading branch information
sfisol committed Feb 28, 2024
1 parent ce96281 commit 4633c33
Show file tree
Hide file tree
Showing 13 changed files with 31 additions and 25 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2024-02-01
toolchain: nightly-2024-02-28
target: wasm32-unknown-unknown
components: clippy
override: true
Expand All @@ -74,7 +74,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2024-02-01
toolchain: nightly-2024-02-28
target: wasm32-unknown-unknown
components: clippy
override: true
Expand All @@ -85,7 +85,7 @@ jobs:
- name: vertigo-cli
run: |
cargo build --release -p vertigo-cli
rustup default nightly-2024-02-01
rustup default nightly-2024-02-28
mkdir ../vertigo-cli-test
mv target/release/vertigo ../vertigo-cli-test
cd ../vertigo-cli-test
Expand Down
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 -->
## 0.4.3 - Unreleased
## 0.4.3 - 2024-02-28

### Fixed

Expand Down
8 changes: 7 additions & 1 deletion Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,17 @@
default_to_workspace = false


[tasks.vertigo-test]
[tasks.unit-tests]
script = [
"cargo test -p vertigo --all-features"
]

# NOTE: WebDriver on localhost:9515 needs to be running
[tasks.automated-tests]
script = [
"cargo test --package fantoccini-tests -- --ignored"
]

# Run clippy for wasm32 target

[tasks.clippy-wasm32]
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.4.2/status.svg)](https://deps.rs/crate/vertigo/0.4.2)
[![Dependency Status](https://deps.rs/crate/vertigo/0.4.3/status.svg)](https://deps.rs/crate/vertigo/0.4.3)
[![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
6 changes: 3 additions & 3 deletions crates/vertigo-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,18 @@ name = "vertigo_cli"
path = "src/main.rs"

[dependencies]
axum = { version = "0.6.12", features = ["macros"] }
axum = { version = "0.6.20", features = ["macros"] }
axum-extra = "0.8.0"
clap = { version = "4.0", features = ["derive"] }
env_logger = "0.10"
env_logger = "0.11"
futures = "0.3.26"
hex = "0.4"
html-escape = "0.2"
include_dir = "0.7"
log = "0.4"
notify = "6.1.1"
pkg-version = "1"
poem = { version = "1.3.55", features = ["sse"] }
poem = { version = "1.3.59", features = ["sse"] }
reqwest = "0.11.14"
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions 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.4.2"
version = "0.4.3"
authors = ["Grzegorz Szeliga <[email protected]>", "Michał Pokrywka <[email protected]>"]
description = "Reactive Real-DOM library with SSR for Rust - macros"
edition = "2021"
Expand All @@ -18,7 +18,7 @@ proc-macro2 = "1.0"
proc-macro-error = "1.0"
quote = "1.0"
syn = { version = "1.0", features=["full"] }
itertools = "0.11"
itertools = "0.12"
syn-rsx = "0.8"
sha2 = "0.10"
hex = "0.4"
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.4.2"
version = "0.4.3"
authors = ["Grzegorz Szeliga <[email protected]>", "Michał Pokrywka <[email protected]>"]
description = "Reactive Real-DOM library with SSR for Rust"
readme = "README.md"
Expand All @@ -14,4 +14,4 @@ edition = "2021"

[dependencies]
log = { version = "0.4", features=["std"] }
vertigo-macro = { path = "../../crates/vertigo-macro", version = "0.4.2" }
vertigo-macro = { path = "../../crates/vertigo-macro", version = "0.4.3" }
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.4.2"
version = "0.4.3"
authors = ["Grzegorz Szeliga <[email protected]>", "Michał Pokrywka <[email protected]>"]
edition = "2021"

Expand All @@ -9,4 +9,4 @@ crate-type = ["cdylib", "rlib"]

[dependencies]
log = "0.4.17"
vertigo = { path = "../../crates/vertigo", version = "0.4.2" }
vertigo = { path = "../../crates/vertigo", version = "0.4.3" }
6 changes: 3 additions & 3 deletions demo/server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ version = "0.1.0"
edition = "2021"

[dependencies]
futures = "0.3.26"
axum = { version = "0.6.4", features = ["ws"] }
tokio = { version = "1.25.0", features = ["full"] }
futures = "0.3.30"
axum = { version = "0.6.20", features = ["ws"] }
tokio = { version = "1.36.0", features = ["full"] }
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.4.2"
version = "0.4.3"
authors = ["Grzegorz Szeliga <[email protected]>", "Michał Pokrywka <[email protected]>"]
edition = "2021"

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

[dependencies]
vertigo = { path = "../../crates/vertigo", version = "0.4.2" }
vertigo = { path = "../../crates/vertigo", version = "0.4.3" }
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.4.2"
version = "0.4.3"
authors = ["Grzegorz Szeliga <[email protected]>", "Michał Pokrywka <[email protected]>"]
edition = "2021"

Expand All @@ -9,4 +9,4 @@ crate-type = ["cdylib", "rlib"]

[dependencies]
log = "0.4.14"
vertigo = { path = "../../crates/vertigo", version = "0.4.2" }
vertigo = { path = "../../crates/vertigo", version = "0.4.3" }
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.4.2"
version = "0.4.3"
authors = ["Grzegorz Szeliga <[email protected]>", "Michał Pokrywka <[email protected]>"]
edition = "2021"

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

[dependencies]
vertigo = { path = "../../crates/vertigo", version = "0.4.2" }
vertigo = { path = "../../crates/vertigo", version = "0.4.3" }
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.4.2*
*Up to date with version 0.4.3*

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

0 comments on commit 4633c33

Please sign in to comment.