Skip to content

Commit 4633c33

Browse files
committed
Bumped to 0.4.3, updated libs
1 parent ce96281 commit 4633c33

File tree

13 files changed

+31
-25
lines changed

13 files changed

+31
-25
lines changed

.github/workflows/pipeline.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- uses: actions/checkout@v2
5353
- uses: actions-rs/toolchain@v1
5454
with:
55-
toolchain: nightly-2024-02-01
55+
toolchain: nightly-2024-02-28
5656
target: wasm32-unknown-unknown
5757
components: clippy
5858
override: true
@@ -74,7 +74,7 @@ jobs:
7474
- uses: actions/checkout@v2
7575
- uses: actions-rs/toolchain@v1
7676
with:
77-
toolchain: nightly-2024-02-01
77+
toolchain: nightly-2024-02-28
7878
target: wasm32-unknown-unknown
7979
components: clippy
8080
override: true
@@ -85,7 +85,7 @@ jobs:
8585
- name: vertigo-cli
8686
run: |
8787
cargo build --release -p vertigo-cli
88-
rustup default nightly-2024-02-01
88+
rustup default nightly-2024-02-28
8989
mkdir ../vertigo-cli-test
9090
mv target/release/vertigo ../vertigo-cli-test
9191
cd ../vertigo-cli-test

CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- markdownlint-configure-file { "no-duplicate-heading": { "siblings_only": true } } -->
22

33
<!-- markdownlint-disable-next-line first-line-h1 -->
4-
## 0.4.3 - Unreleased
4+
## 0.4.3 - 2024-02-28
55

66
### Fixed
77

Makefile.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,17 @@
22
default_to_workspace = false
33

44

5-
[tasks.vertigo-test]
5+
[tasks.unit-tests]
66
script = [
77
"cargo test -p vertigo --all-features"
88
]
99

10+
# NOTE: WebDriver on localhost:9515 needs to be running
11+
[tasks.automated-tests]
12+
script = [
13+
"cargo test --package fantoccini-tests -- --ignored"
14+
]
15+
1016
# Run clippy for wasm32 target
1117

1218
[tasks.clippy-wasm32]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ A reactive Real-DOM library with SSR for Rust
55
[![crates.io](https://img.shields.io/crates/v/vertigo)](https://crates.io/crates/vertigo)
66
[![Documentation](https://docs.rs/vertigo/badge.svg)](https://docs.rs/vertigo)
77
![MIT or Apache 2.0 licensed](https://img.shields.io/crates/l/vertigo.svg)
8-
[![Dependency Status](https://deps.rs/crate/vertigo/0.4.2/status.svg)](https://deps.rs/crate/vertigo/0.4.2)
8+
[![Dependency Status](https://deps.rs/crate/vertigo/0.4.3/status.svg)](https://deps.rs/crate/vertigo/0.4.3)
99
[![CI](https://github.com/vertigo-web/vertigo/actions/workflows/pipeline.yaml/badge.svg)](https://github.com/vertigo-web/vertigo/actions/workflows/pipeline.yaml)
1010
[![downloads](https://img.shields.io/crates/d/vertigo.svg)](https://crates.io/crates/vertigo)
1111

crates/vertigo-cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@ name = "vertigo_cli"
1717
path = "src/main.rs"
1818

1919
[dependencies]
20-
axum = { version = "0.6.12", features = ["macros"] }
20+
axum = { version = "0.6.20", features = ["macros"] }
2121
axum-extra = "0.8.0"
2222
clap = { version = "4.0", features = ["derive"] }
23-
env_logger = "0.10"
23+
env_logger = "0.11"
2424
futures = "0.3.26"
2525
hex = "0.4"
2626
html-escape = "0.2"
2727
include_dir = "0.7"
2828
log = "0.4"
2929
notify = "6.1.1"
3030
pkg-version = "1"
31-
poem = { version = "1.3.55", features = ["sse"] }
31+
poem = { version = "1.3.59", features = ["sse"] }
3232
reqwest = "0.11.14"
3333
serde = { version = "1.0", features = ["derive", "rc"] }
3434
serde_json = "1.0"

crates/vertigo-macro/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vertigo-macro"
3-
version = "0.4.2"
3+
version = "0.4.3"
44
authors = ["Grzegorz Szeliga <szeligagrzegorz@gmail.com>", "Michał Pokrywka <wolfmoon@o2.pl>"]
55
description = "Reactive Real-DOM library with SSR for Rust - macros"
66
edition = "2021"
@@ -18,7 +18,7 @@ proc-macro2 = "1.0"
1818
proc-macro-error = "1.0"
1919
quote = "1.0"
2020
syn = { version = "1.0", features=["full"] }
21-
itertools = "0.11"
21+
itertools = "0.12"
2222
syn-rsx = "0.8"
2323
sha2 = "0.10"
2424
hex = "0.4"

crates/vertigo/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vertigo"
3-
version = "0.4.2"
3+
version = "0.4.3"
44
authors = ["Grzegorz Szeliga <szeligagrzegorz@gmail.com>", "Michał Pokrywka <wolfmoon@o2.pl>"]
55
description = "Reactive Real-DOM library with SSR for Rust"
66
readme = "README.md"
@@ -14,4 +14,4 @@ edition = "2021"
1414

1515
[dependencies]
1616
log = { version = "0.4", features=["std"] }
17-
vertigo-macro = { path = "../../crates/vertigo-macro", version = "0.4.2" }
17+
vertigo-macro = { path = "../../crates/vertigo-macro", version = "0.4.3" }

demo/app/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vertigo-demo"
3-
version = "0.4.2"
3+
version = "0.4.3"
44
authors = ["Grzegorz Szeliga <szeligagrzegorz@gmail.com>", "Michał Pokrywka <wolfmoon@o2.pl>"]
55
edition = "2021"
66

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

1010
[dependencies]
1111
log = "0.4.17"
12-
vertigo = { path = "../../crates/vertigo", version = "0.4.2" }
12+
vertigo = { path = "../../crates/vertigo", version = "0.4.3" }

demo/server/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7-
futures = "0.3.26"
8-
axum = { version = "0.6.4", features = ["ws"] }
9-
tokio = { version = "1.25.0", features = ["full"] }
7+
futures = "0.3.30"
8+
axum = { version = "0.6.20", features = ["ws"] }
9+
tokio = { version = "1.36.0", features = ["full"] }

examples/counter/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "vertigo-example-counter"
3-
version = "0.4.2"
3+
version = "0.4.3"
44
authors = ["Grzegorz Szeliga <szeligagrzegorz@gmail.com>", "Michał Pokrywka <wolfmoon@o2.pl>"]
55
edition = "2021"
66

77
[lib]
88
crate-type = ["cdylib", "rlib"]
99

1010
[dependencies]
11-
vertigo = { path = "../../crates/vertigo", version = "0.4.2" }
11+
vertigo = { path = "../../crates/vertigo", version = "0.4.3" }

examples/router/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vertigo-example-router"
3-
version = "0.4.2"
3+
version = "0.4.3"
44
authors = ["Grzegorz Szeliga <szeligagrzegorz@gmail.com>", "Michał Pokrywka <wolfmoon@o2.pl>"]
55
edition = "2021"
66

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

1010
[dependencies]
1111
log = "0.4.14"
12-
vertigo = { path = "../../crates/vertigo", version = "0.4.2" }
12+
vertigo = { path = "../../crates/vertigo", version = "0.4.3" }

examples/trafficlights/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "vertigo-example-trafficlights"
3-
version = "0.4.2"
3+
version = "0.4.3"
44
authors = ["Grzegorz Szeliga <szeligagrzegorz@gmail.com>", "Michał Pokrywka <wolfmoon@o2.pl>"]
55
edition = "2021"
66

77
[lib]
88
crate-type = ["cdylib", "rlib"]
99

1010
[dependencies]
11-
vertigo = { path = "../../crates/vertigo", version = "0.4.2" }
11+
vertigo = { path = "../../crates/vertigo", version = "0.4.3" }

tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!-- markdownlint-disable no-inline-html -->
33

44
<!-- markdownlint-disable-next-line no-emphasis-as-heading -->
5-
*Up to date with version 0.4.2*
5+
*Up to date with version 0.4.3*
66

77
<!-- markdownlint-disable-next-line heading-increment -->
88
### Table of contents

0 commit comments

Comments
 (0)