Skip to content

Commit 83ad615

Browse files
committed
Bump version for release
1 parent 9a2fb93 commit 83ad615

File tree

11 files changed

+35
-29
lines changed

11 files changed

+35
-29
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,17 @@ 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.3](#v003)
910
- [v0.0.2](#v002)
1011
- [v0.0.1](#v001)
1112
- [Diffs](#diffs)
1213

1314
## Unreleased
1415

16+
## v0.0.3
17+
18+
Released 2021-03-06
19+
1520
#### Added
1621
- Internal: use cargo-release for all releases
1722

@@ -31,5 +36,6 @@ Released 2021-03-06
3136

3237
## Diffs
3338

34-
- [Unreleased](https://github.com/BVE-Reborn/rend3/compare/v0.0.2...HEAD)
39+
- [Unreleased](https://github.com/BVE-Reborn/rend3/compare/v0.0.3...HEAD)
40+
- [v0.0.3](https://github.com/BVE-Reborn/rend3/compare/v0.0.2...v0.0.3)
3541
- [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 = { version = "0.0.2" }
21+
rend3 = "0.0.3"
2222
```
2323

2424
## Examples

examples/cube/Cargo.toml

+4-4
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.2"
4+
version = "0.0.3"
55
authors = ["Connor Fitzgerald <[email protected]>"]
66
edition = "2018"
77
publish = false
@@ -16,11 +16,11 @@ path = "src/main.rs"
1616
# Linear algebra library
1717
glam = "0.12"
1818
# Renderer
19-
rend3 = { path = "../../rend3", version = "0.0.2" }
20-
rend3-list = { path = "../../rend3-list", version = "0.0.2" }
19+
rend3 = { path = "../../rend3", version = "^0.0.3"}
20+
rend3-list = { path = "../../rend3-list", version = "^0.0.3"}
2121
# Provides `block_on` to wait for futures from sync code
2222
pollster = "0.2"
2323
# wgpu-aware logging
2424
wgpu-subscriber = "0.1"
2525
# windowing
26-
winit = "0.24"
26+
winit = "0.24"

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.2"
4+
version = "0.0.3"
55
authors = ["Connor Fitzgerald <[email protected]>"]
66
edition = "2018"
77
publish = false
@@ -18,8 +18,8 @@ glam = "0.12"
1818
# parsing model files
1919
gltf = { version = "0.15.2", features = [ "utils" ] }
2020
# Renderer
21-
rend3 = { path = "../../rend3", version = "0.0.2" }
22-
rend3-list = { path = "../../rend3-list", version = "0.0.2" }
21+
rend3 = { path = "../../rend3", version = "^0.0.3"}
22+
rend3-list = { path = "../../rend3-list", version = "^0.0.3"}
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.2"
4+
version = "0.0.3"
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.12"
1818
# Renderer
19-
rend3 = { path = "../../rend3", version = "0.0.2" }
20-
rend3-list = { path = "../../rend3-list", version = "0.0.2" }
19+
rend3 = { path = "../../rend3", version = "^0.0.3"}
20+
rend3-list = { path = "../../rend3-list", version = "^0.0.3"}
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.2"
4+
version = "0.0.3"
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.2" }
25-
rend3-gltf = { path = "../../rend3-gltf", version = "0.0.2" }
26-
rend3-list = { path = "../../rend3-list", version = "0.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"}
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.2"
3+
version = "0.0.3"
44
authors = ["Connor Fitzgerald <[email protected]>"]
55
edition = "2018"
66
description = "gltf scene and model loader for rend3"
@@ -16,5 +16,5 @@ glam = "0.12"
1616
futures-util = "0.3"
1717
fnv = "1"
1818
image = "0.23"
19-
rend3 = { version = "0.0.2", path = "../rend3" }
19+
rend3 = { version = "^0.0.3", 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.2"
3+
version = "0.0.3"
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.2", path = "../rend3" }
13+
rend3 = { version = "^0.0.3", 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.2"
3+
version = "0.0.3"
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.2"
11+
//! rend3 = "0.0.3"
1212
//! ```
1313
//!
1414
//! # Examples

0 commit comments

Comments
 (0)