Skip to content
This repository was archived by the owner on Jun 7, 2025. It is now read-only.

Commit 716116d

Browse files
committed
Bump version for release
1 parent 57a5b67 commit 716116d

File tree

11 files changed

+34
-28
lines changed

11 files changed

+34
-28
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ 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.5](#v005)
910
- [v0.0.4](#v004)
1011
- [v0.0.3](#v003)
1112
- [v0.0.2](#v002)
@@ -14,6 +15,10 @@ and this project adheres to cargo's version of [Semantic Versioning](https://sem
1415

1516
## Unreleased
1617

18+
## v0.0.5
19+
20+
Released 2021-03-10
21+
1722
### Fixed
1823
- Fixed silly math error when converting to `glam` to `v0.13.0`.
1924

@@ -49,7 +54,8 @@ Released 2021-03-06
4954

5055
## Diffs
5156

52-
- [Unreleased](https://github.com/BVE-Reborn/rend3/compare/v0.0.4...HEAD)
57+
- [Unreleased](https://github.com/BVE-Reborn/rend3/compare/v0.0.5...HEAD)
58+
- [v0.0.5](https://github.com/BVE-Reborn/rend3/compare/v0.0.4...v0.0.5)
5359
- [v0.0.4](https://github.com/BVE-Reborn/rend3/compare/v0.0.3...v0.0.4)
5460
- [v0.0.3](https://github.com/BVE-Reborn/rend3/compare/v0.0.2...v0.0.3)
5561
- [v0.0.2](https://github.com/BVE-Reborn/rend3/compare/v0.0.1...v0.0.2)

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
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.4"
21+
rend3 = "0.0.5"
2222
```
2323

2424
## Examples

examples/cube/Cargo.toml

Lines changed: 3 additions & 3 deletions
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.4"
4+
version = "0.0.5"
55
authors = ["Connor Fitzgerald <connorwadefitzgerald@gmail.com>"]
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.4"}
20-
rend3-list = { path = "../../rend3-list", version = "^0.0.4"}
19+
rend3 = { path = "../../rend3", version = "^0.0.5"}
20+
rend3-list = { path = "../../rend3-list", version = "^0.0.5"}
2121
# Provides `block_on` to wait for futures from sync code
2222
pollster = "0.2"
2323
# wgpu-aware logging

examples/gltf/Cargo.toml

Lines changed: 3 additions & 3 deletions
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.4"
4+
version = "0.0.5"
55
authors = ["Connor Fitzgerald <connorwadefitzgerald@gmail.com>"]
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.4"}
22-
rend3-list = { path = "../../rend3-list", version = "^0.0.4"}
21+
rend3 = { path = "../../rend3", version = "^0.0.5"}
22+
rend3-list = { path = "../../rend3-list", version = "^0.0.5"}
2323
# Provides `block_on` to wait for futures from sync code
2424
pollster = "0.2"
2525
# wgpu-aware logging

examples/imgui/Cargo.toml

Lines changed: 3 additions & 3 deletions
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.4"
4+
version = "0.0.5"
55
authors = ["Connor Fitzgerald <connorwadefitzgerald@gmail.com>"]
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.4"}
20-
rend3-list = { path = "../../rend3-list", version = "^0.0.4"}
19+
rend3 = { path = "../../rend3", version = "^0.0.5"}
20+
rend3-list = { path = "../../rend3-list", version = "^0.0.5"}
2121
# imgui and integrations
2222
imgui = "0.7"
2323
imgui-winit-support = "0.7"

examples/scene-viewer/Cargo.toml

Lines changed: 4 additions & 4 deletions
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.4"
4+
version = "0.0.5"
55
authors = ["Connor Fitzgerald <connorwadefitzgerald@gmail.com>"]
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.4"}
25-
rend3-gltf = { path = "../../rend3-gltf", version = "^0.0.4"}
26-
rend3-list = { path = "../../rend3-list", version = "^0.0.4"}
24+
rend3 = { path = "../../rend3", version = "^0.0.5"}
25+
rend3-gltf = { path = "../../rend3-gltf", version = "^0.0.5"}
26+
rend3-list = { path = "../../rend3-list", version = "^0.0.5"}
2727
smallvec = "1"
2828
tracing = { version = "0.1", default-features = false, features = ["std"] }
2929
wgpu = "0.7"

rend3-gltf/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rend3-gltf"
3-
version = "0.0.4"
3+
version = "0.0.5"
44
authors = ["Connor Fitzgerald <connorwadefitzgerald@gmail.com>"]
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.4", path = "../rend3" }
19+
rend3 = { version = "^0.0.5", path = "../rend3" }
2020
thiserror = "1"

rend3-list/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rend3-list"
3-
version = "0.0.4"
3+
version = "0.0.5"
44
authors = ["Connor Fitzgerald <connorwadefitzgerald@gmail.com>"]
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.4", path = "../rend3" }
13+
rend3 = { version = "^0.0.5", path = "../rend3" }

rend3/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rend3"
3-
version = "0.0.4"
3+
version = "0.0.5"
44
authors = ["Connor Fitzgerald <connorwadefitzgerald@gmail.com>"]
55
edition = "2018"
66
description = "Easy to use, customizable, efficient 3D renderer library built on wgpu."

rend3/src/lib.rs

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

0 commit comments

Comments
 (0)