Skip to content

Commit 17efea7

Browse files
chore: bump version to v0.42.0
1 parent 62a3d8a commit 17efea7

10 files changed

Lines changed: 13 additions & 13 deletions

File tree

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ exclude = ["site", "template", "template_leptos", "docs", "apps/editor"]
44
resolver = "2"
55

66
[workspace.package]
7-
version = "0.41.0"
7+
version = "0.42.0"
88
authors = ["Matthew Berger <matthewjordanberger@gmail.com>"]
99
homepage = "https://github.com/matthewjberger/nightshade"
1010
repository = "https://github.com/matthewjberger/nightshade"
@@ -54,8 +54,8 @@ kira = "0.11.0"
5454
mint = "0.5"
5555
nalgebra = { version = "0.34.1", features = ["serde-serialize"] }
5656
nalgebra-glm = { version = "0.20.0", features = ["convert-bytemuck"] }
57-
nightshade = { version = "0.41.0", path = "crates/nightshade" }
58-
nightshade-api = { version = "0.41.0", path = "crates/nightshade-api" }
57+
nightshade = { version = "0.42.0", path = "crates/nightshade" }
58+
nightshade-api = { version = "0.42.0", path = "crates/nightshade-api" }
5959
petgraph = { version = "0.8", features = ["serde-1"] }
6060
rapier3d = { version = "0.30", features = ["debug-render", "serde-serialize"] }
6161
raw-window-handle = "0.6.2"

apps/editor/desktop/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nightshade-editor"
3-
version = "0.41.0"
3+
version = "0.42.0"
44
authors = ["Matthew Berger <matthewjordanberger@gmail.com>"]
55
description = "Interactive map editor for the Nightshade game engine"
66
homepage = "https://github.com/matthewjberger/nightshade"
@@ -36,7 +36,7 @@ winit = "0.30"
3636
rust-embed = { version = "8", features = ["interpolate-folder-path"] }
3737
tiny_http = "0.12"
3838
dirs = "6"
39-
nightshade = { version = "0.41", path = "../../../crates/nightshade", optional = true }
39+
nightshade = { version = "0.42", path = "../../../crates/nightshade", optional = true }
4040
enum2schema = { version = "0.1", optional = true }
4141
tokio = { version = "1", features = [
4242
"rt-multi-thread",

crates/nightshade-api/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ fn main() {
2323

2424
```toml
2525
[dependencies]
26-
nightshade-api = "0.41.0"
26+
nightshade-api = "0.42.0"
2727
```
2828

2929
## Two ways to run

crates/nightshade-api/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
//! Add to Cargo.toml:
2424
//!
2525
//! ```toml
26-
//! nightshade-api = "0.41"
26+
//! nightshade-api = "0.42"
2727
//! ```
2828
//!
2929
//! ## What you get for free

crates/nightshade/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Use the [nightshade-template](https://github.com/matthewjberger/nightshade-templ
1414

1515
```toml
1616
[dependencies]
17-
nightshade = "0.41.0"
17+
nightshade = "0.42.0"
1818
```
1919

2020
### Hello, Nightshade

crates/nightshade/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
//!
99
//! ```toml
1010
//! [dependencies]
11-
//! nightshade = "0.41"
11+
//! nightshade = "0.42"
1212
//! ```
1313
//!
1414
//! ### 2. Create Your Game

docs/book/src/api-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ The standing per-frame overhead is the escape key check, one name read for the c
4545

4646
```toml
4747
[dependencies]
48-
nightshade-api = "0.41"
48+
nightshade-api = "0.42"
4949
```
5050

5151
The crate lives at `crates/nightshade-api` in the engine repository and versions in lockstep with the engine. When working inside the repository, depend on it by path:

docs/book/src/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Subsystems are opt-in through Cargo features. Add them in `Cargo.toml`:
8484

8585
```toml
8686
[dependencies]
87-
nightshade = { version = "0.41", features = ["physics", "audio"] }
87+
nightshade = { version = "0.42", features = ["physics", "audio"] }
8888
```
8989

9090
| Feature | Description |

template/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ name = "template"
1313
path = "src/main.rs"
1414

1515
[dependencies]
16-
nightshade = { version = "0.41.0" }
16+
nightshade = { version = "0.42.0" }
1717

1818
[target.'cfg(target_arch = "wasm32")'.dependencies]
1919
wasm-bindgen = "0.2"

template_leptos/worker/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ crate-type = ["cdylib"]
99

1010
[dependencies]
1111
protocol = { path = "../protocol" }
12-
nightshade = { version = "0.41.0", features = ["tracing", "debug_render"] }
12+
nightshade = { version = "0.42.0", features = ["tracing", "debug_render"] }
1313
serde = { version = "1", features = ["derive"] }
1414
wasm-bindgen = "=0.2.115"
1515
wasm-bindgen-futures = "0.4"

0 commit comments

Comments
 (0)