Skip to content

Commit b6d7c96

Browse files
committed
Bump version for release
1 parent 498080a commit b6d7c96

File tree

11 files changed

+34
-28
lines changed

11 files changed

+34
-28
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,18 @@ The format is loosely based on [Keep a Changelog](https://keepachangelog.com/en/
66
and this project adheres to cargo's version of [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
- [Unreleased](#unreleased)
9+
- [v0.0.4](#v004)
910
- [v0.0.3](#v003)
1011
- [v0.0.2](#v002)
1112
- [v0.0.1](#v001)
1213
- [Diffs](#diffs)
1314

1415
## Unreleased
1516

17+
## v0.0.4
18+
19+
Released 2021-03-08
20+
1621
#### Updated
1722
- `glam` to `v0.13.0`
1823

@@ -39,6 +44,7 @@ Released 2021-03-06
3944

4045
## Diffs
4146

42-
- [Unreleased](https://github.com/BVE-Reborn/rend3/compare/v0.0.3...HEAD)
47+
- [Unreleased](https://github.com/BVE-Reborn/rend3/compare/v0.0.4...HEAD)
48+
- [v0.0.4](https://github.com/BVE-Reborn/rend3/compare/v0.0.3...v0.0.4)
4349
- [v0.0.3](https://github.com/BVE-Reborn/rend3/compare/v0.0.2...v0.0.3)
4450
- [v0.0.2](https://github.com/BVE-Reborn/rend3/compare/v0.0.1...v0.0.2)

Cargo.lock

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Rend3 is not currently release on crates.io, to use it add the following
1818
to your Cargo.toml:
1919

2020
```
21-
rend3 = "0.0.3"
21+
rend3 = "0.0.4"
2222
```
2323

2424
## Examples

examples/cube/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rend3-cube-example"
33
license = "MIT OR Apache-2.0 OR Zlib"
4-
version = "0.0.3"
4+
version = "0.0.4"
55
authors = ["Connor Fitzgerald <[email protected]>"]
66
edition = "2018"
77
publish = false
@@ -16,8 +16,8 @@ path = "src/main.rs"
1616
# Linear algebra library
1717
glam = "0.13"
1818
# Renderer
19-
rend3 = { path = "../../rend3", version = "^0.0.3"}
20-
rend3-list = { path = "../../rend3-list", version = "^0.0.3"}
19+
rend3 = { path = "../../rend3", version = "^0.0.4"}
20+
rend3-list = { path = "../../rend3-list", version = "^0.0.4"}
2121
# Provides `block_on` to wait for futures from sync code
2222
pollster = "0.2"
2323
# wgpu-aware logging

examples/gltf/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rend3-gltf-example"
33
license = "MIT OR Apache-2.0 OR Zlib"
4-
version = "0.0.3"
4+
version = "0.0.4"
55
authors = ["Connor Fitzgerald <[email protected]>"]
66
edition = "2018"
77
publish = false
@@ -18,8 +18,8 @@ glam = "0.13"
1818
# parsing model files
1919
gltf = { version = "0.15.2", features = [ "utils" ] }
2020
# Renderer
21-
rend3 = { path = "../../rend3", version = "^0.0.3"}
22-
rend3-list = { path = "../../rend3-list", version = "^0.0.3"}
21+
rend3 = { path = "../../rend3", version = "^0.0.4"}
22+
rend3-list = { path = "../../rend3-list", version = "^0.0.4"}
2323
# Provides `block_on` to wait for futures from sync code
2424
pollster = "0.2"
2525
# wgpu-aware logging

examples/imgui/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rend3-imgui-example"
33
license = "MIT OR Apache-2.0 OR Zlib"
4-
version = "0.0.3"
4+
version = "0.0.4"
55
authors = ["Connor Fitzgerald <[email protected]>"]
66
edition = "2018"
77
publish = false
@@ -16,8 +16,8 @@ path = "src/main.rs"
1616
# Linear algebra library
1717
glam = "0.13"
1818
# Renderer
19-
rend3 = { path = "../../rend3", version = "^0.0.3"}
20-
rend3-list = { path = "../../rend3-list", version = "^0.0.3"}
19+
rend3 = { path = "../../rend3", version = "^0.0.4"}
20+
rend3-list = { path = "../../rend3-list", version = "^0.0.4"}
2121
# imgui and integrations
2222
imgui = "0.7"
2323
imgui-winit-support = "0.7"

examples/scene-viewer/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rend3-scene-viewer-example"
33
license = "MIT OR Apache-2.0 OR Zlib"
4-
version = "0.0.3"
4+
version = "0.0.4"
55
authors = ["Connor Fitzgerald <[email protected]>"]
66
edition = "2018"
77
publish = false
@@ -21,9 +21,9 @@ image = { version = "0.23", default-features = false, features = ["png", "jpeg",
2121
histogram = "0.6"
2222
pico-args = "0.4"
2323
pollster = "0.2"
24-
rend3 = { path = "../../rend3", version = "^0.0.3"}
25-
rend3-gltf = { path = "../../rend3-gltf", version = "^0.0.3"}
26-
rend3-list = { path = "../../rend3-list", version = "^0.0.3"}
24+
rend3 = { path = "../../rend3", version = "^0.0.4"}
25+
rend3-gltf = { path = "../../rend3-gltf", version = "^0.0.4"}
26+
rend3-list = { path = "../../rend3-list", version = "^0.0.4"}
2727
smallvec = "1"
2828
tracing = { version = "0.1", default-features = false, features = ["std"] }
2929
wgpu = "0.7"

rend3-gltf/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rend3-gltf"
3-
version = "0.0.3"
3+
version = "0.0.4"
44
authors = ["Connor Fitzgerald <[email protected]>"]
55
edition = "2018"
66
description = "gltf scene and model loader for rend3"
@@ -16,5 +16,5 @@ glam = "0.13"
1616
futures-util = "0.3"
1717
fnv = "1"
1818
image = "0.23"
19-
rend3 = { version = "^0.0.3", path = "../rend3" }
19+
rend3 = { version = "^0.0.4", path = "../rend3" }
2020
thiserror = "1"

rend3-list/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rend3-list"
3-
version = "0.0.3"
3+
version = "0.0.4"
44
authors = ["Connor Fitzgerald <[email protected]>"]
55
edition = "2018"
66
description = "default renderlist rend3"
@@ -10,4 +10,4 @@ keywords = ["3d", "graphics", "gpu", "renderer", "wgpu"]
1010
categories = ["game-development", "graphics", "rendering", "rendering::engine"]
1111

1212
[dependencies]
13-
rend3 = { version = "^0.0.3", path = "../rend3" }
13+
rend3 = { version = "^0.0.4", path = "../rend3" }

rend3/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rend3"
3-
version = "0.0.3"
3+
version = "0.0.4"
44
authors = ["Connor Fitzgerald <[email protected]>"]
55
edition = "2018"
66
description = "Easy to use, customizable, efficient 3D renderer library built on wgpu."

rend3/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
//! to your Cargo.toml:
99
//!
1010
//! ```text
11-
//! rend3 = "0.0.3"
11+
//! rend3 = "0.0.4"
1212
//! ```
1313
//!
1414
//! # Examples

0 commit comments

Comments
 (0)