File tree Expand file tree Collapse file tree 13 files changed +31
-25
lines changed Expand file tree Collapse file tree 13 files changed +31
-25
lines changed Original file line number Diff line number Diff line change 52
52
- uses : actions/checkout@v2
53
53
- uses : actions-rs/toolchain@v1
54
54
with :
55
- toolchain : nightly-2024-02-01
55
+ toolchain : nightly-2024-02-28
56
56
target : wasm32-unknown-unknown
57
57
components : clippy
58
58
override : true
74
74
- uses : actions/checkout@v2
75
75
- uses : actions-rs/toolchain@v1
76
76
with :
77
- toolchain : nightly-2024-02-01
77
+ toolchain : nightly-2024-02-28
78
78
target : wasm32-unknown-unknown
79
79
components : clippy
80
80
override : true
85
85
- name : vertigo-cli
86
86
run : |
87
87
cargo build --release -p vertigo-cli
88
- rustup default nightly-2024-02-01
88
+ rustup default nightly-2024-02-28
89
89
mkdir ../vertigo-cli-test
90
90
mv target/release/vertigo ../vertigo-cli-test
91
91
cd ../vertigo-cli-test
Original file line number Diff line number Diff line change 1
1
<!-- markdownlint-configure-file { "no-duplicate-heading": { "siblings_only": true } } -->
2
2
3
3
<!-- markdownlint-disable-next-line first-line-h1 -->
4
- ## 0.4.3 - Unreleased
4
+ ## 0.4.3 - 2024-02-28
5
5
6
6
### Fixed
7
7
Original file line number Diff line number Diff line change 2
2
default_to_workspace = false
3
3
4
4
5
- [tasks .vertigo-test ]
5
+ [tasks .unit-tests ]
6
6
script = [
7
7
" cargo test -p vertigo --all-features"
8
8
]
9
9
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
+
10
16
# Run clippy for wasm32 target
11
17
12
18
[tasks .clippy-wasm32 ]
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ A reactive Real-DOM library with SSR for Rust
5
5
[ ![ crates.io] ( https://img.shields.io/crates/v/vertigo )] ( https://crates.io/crates/vertigo )
6
6
[ ![ Documentation] ( https://docs.rs/vertigo/badge.svg )] ( https://docs.rs/vertigo )
7
7
![ 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 )
9
9
[ ![ CI] ( https://github.com/vertigo-web/vertigo/actions/workflows/pipeline.yaml/badge.svg )] ( https://github.com/vertigo-web/vertigo/actions/workflows/pipeline.yaml )
10
10
[ ![ downloads] ( https://img.shields.io/crates/d/vertigo.svg )] ( https://crates.io/crates/vertigo )
11
11
Original file line number Diff line number Diff line change @@ -17,18 +17,18 @@ name = "vertigo_cli"
17
17
path = " src/main.rs"
18
18
19
19
[dependencies ]
20
- axum = { version = " 0.6.12 " , features = [" macros" ] }
20
+ axum = { version = " 0.6.20 " , features = [" macros" ] }
21
21
axum-extra = " 0.8.0"
22
22
clap = { version = " 4.0" , features = [" derive" ] }
23
- env_logger = " 0.10 "
23
+ env_logger = " 0.11 "
24
24
futures = " 0.3.26"
25
25
hex = " 0.4"
26
26
html-escape = " 0.2"
27
27
include_dir = " 0.7"
28
28
log = " 0.4"
29
29
notify = " 6.1.1"
30
30
pkg-version = " 1"
31
- poem = { version = " 1.3.55 " , features = [" sse" ] }
31
+ poem = { version = " 1.3.59 " , features = [" sse" ] }
32
32
reqwest = " 0.11.14"
33
33
serde = { version = " 1.0" , features = [" derive" , " rc" ] }
34
34
serde_json = " 1.0"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " vertigo-macro"
3
- version = " 0.4.2 "
3
+ version = " 0.4.3 "
4
4
authors = [" Grzegorz Szeliga <szeligagrzegorz@gmail.com>" , " Michał Pokrywka <wolfmoon@o2.pl>" ]
5
5
description = " Reactive Real-DOM library with SSR for Rust - macros"
6
6
edition = " 2021"
@@ -18,7 +18,7 @@ proc-macro2 = "1.0"
18
18
proc-macro-error = " 1.0"
19
19
quote = " 1.0"
20
20
syn = { version = " 1.0" , features =[" full" ] }
21
- itertools = " 0.11 "
21
+ itertools = " 0.12 "
22
22
syn-rsx = " 0.8"
23
23
sha2 = " 0.10"
24
24
hex = " 0.4"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " vertigo"
3
- version = " 0.4.2 "
3
+ version = " 0.4.3 "
4
4
authors = [" Grzegorz Szeliga <szeligagrzegorz@gmail.com>" , " Michał Pokrywka <wolfmoon@o2.pl>" ]
5
5
description = " Reactive Real-DOM library with SSR for Rust"
6
6
readme = " README.md"
@@ -14,4 +14,4 @@ edition = "2021"
14
14
15
15
[dependencies ]
16
16
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 " }
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " vertigo-demo"
3
- version = " 0.4.2 "
3
+ version = " 0.4.3 "
4
4
authors = [" Grzegorz Szeliga <szeligagrzegorz@gmail.com>" , " Michał Pokrywka <wolfmoon@o2.pl>" ]
5
5
edition = " 2021"
6
6
@@ -9,4 +9,4 @@ crate-type = ["cdylib", "rlib"]
9
9
10
10
[dependencies ]
11
11
log = " 0.4.17"
12
- vertigo = { path = " ../../crates/vertigo" , version = " 0.4.2 " }
12
+ vertigo = { path = " ../../crates/vertigo" , version = " 0.4.3 " }
Original file line number Diff line number Diff line change @@ -4,6 +4,6 @@ version = "0.1.0"
4
4
edition = " 2021"
5
5
6
6
[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" ] }
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " vertigo-example-counter"
3
- version = " 0.4.2 "
3
+ version = " 0.4.3 "
4
4
authors = [" Grzegorz Szeliga <szeligagrzegorz@gmail.com>" , " Michał Pokrywka <wolfmoon@o2.pl>" ]
5
5
edition = " 2021"
6
6
7
7
[lib ]
8
8
crate-type = [" cdylib" , " rlib" ]
9
9
10
10
[dependencies ]
11
- vertigo = { path = " ../../crates/vertigo" , version = " 0.4.2 " }
11
+ vertigo = { path = " ../../crates/vertigo" , version = " 0.4.3 " }
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " vertigo-example-router"
3
- version = " 0.4.2 "
3
+ version = " 0.4.3 "
4
4
authors = [" Grzegorz Szeliga <szeligagrzegorz@gmail.com>" , " Michał Pokrywka <wolfmoon@o2.pl>" ]
5
5
edition = " 2021"
6
6
@@ -9,4 +9,4 @@ crate-type = ["cdylib", "rlib"]
9
9
10
10
[dependencies ]
11
11
log = " 0.4.14"
12
- vertigo = { path = " ../../crates/vertigo" , version = " 0.4.2 " }
12
+ vertigo = { path = " ../../crates/vertigo" , version = " 0.4.3 " }
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " vertigo-example-trafficlights"
3
- version = " 0.4.2 "
3
+ version = " 0.4.3 "
4
4
authors = [" Grzegorz Szeliga <szeligagrzegorz@gmail.com>" , " Michał Pokrywka <wolfmoon@o2.pl>" ]
5
5
edition = " 2021"
6
6
7
7
[lib ]
8
8
crate-type = [" cdylib" , " rlib" ]
9
9
10
10
[dependencies ]
11
- vertigo = { path = " ../../crates/vertigo" , version = " 0.4.2 " }
11
+ vertigo = { path = " ../../crates/vertigo" , version = " 0.4.3 " }
Original file line number Diff line number Diff line change 2
2
<!-- markdownlint-disable no-inline-html -->
3
3
4
4
<!-- 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 *
6
6
7
7
<!-- markdownlint-disable-next-line heading-increment -->
8
8
### Table of contents
You can’t perform that action at this time.
0 commit comments