Skip to content

Commit

Permalink
Bump version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
cwfitzgerald committed Mar 8, 2021
1 parent 498080a commit b6d7c96
Show file tree
Hide file tree
Showing 11 changed files with 34 additions and 28 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,18 @@ The format is loosely based on [Keep a Changelog](https://keepachangelog.com/en/
and this project adheres to cargo's version of [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

- [Unreleased](#unreleased)
- [v0.0.4](#v004)
- [v0.0.3](#v003)
- [v0.0.2](#v002)
- [v0.0.1](#v001)
- [Diffs](#diffs)

## Unreleased

## v0.0.4

Released 2021-03-08

#### Updated
- `glam` to `v0.13.0`

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

## Diffs

- [Unreleased](https://github.com/BVE-Reborn/rend3/compare/v0.0.3...HEAD)
- [Unreleased](https://github.com/BVE-Reborn/rend3/compare/v0.0.4...HEAD)
- [v0.0.4](https://github.com/BVE-Reborn/rend3/compare/v0.0.3...v0.0.4)
- [v0.0.3](https://github.com/BVE-Reborn/rend3/compare/v0.0.2...v0.0.3)
- [v0.0.2](https://github.com/BVE-Reborn/rend3/compare/v0.0.1...v0.0.2)
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Rend3 is not currently release on crates.io, to use it add the following
to your Cargo.toml:

```
rend3 = "0.0.3"
rend3 = "0.0.4"
```

## Examples
Expand Down
6 changes: 3 additions & 3 deletions examples/cube/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "rend3-cube-example"
license = "MIT OR Apache-2.0 OR Zlib"
version = "0.0.3"
version = "0.0.4"
authors = ["Connor Fitzgerald <connorwadefitzgerald@gmail.com>"]
edition = "2018"
publish = false
Expand All @@ -16,8 +16,8 @@ path = "src/main.rs"
# Linear algebra library
glam = "0.13"
# Renderer
rend3 = { path = "../../rend3", version = "^0.0.3"}
rend3-list = { path = "../../rend3-list", version = "^0.0.3"}
rend3 = { path = "../../rend3", version = "^0.0.4"}
rend3-list = { path = "../../rend3-list", version = "^0.0.4"}
# Provides `block_on` to wait for futures from sync code
pollster = "0.2"
# wgpu-aware logging
Expand Down
6 changes: 3 additions & 3 deletions examples/gltf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "rend3-gltf-example"
license = "MIT OR Apache-2.0 OR Zlib"
version = "0.0.3"
version = "0.0.4"
authors = ["Connor Fitzgerald <connorwadefitzgerald@gmail.com>"]
edition = "2018"
publish = false
Expand All @@ -18,8 +18,8 @@ glam = "0.13"
# parsing model files
gltf = { version = "0.15.2", features = [ "utils" ] }
# Renderer
rend3 = { path = "../../rend3", version = "^0.0.3"}
rend3-list = { path = "../../rend3-list", version = "^0.0.3"}
rend3 = { path = "../../rend3", version = "^0.0.4"}
rend3-list = { path = "../../rend3-list", version = "^0.0.4"}
# Provides `block_on` to wait for futures from sync code
pollster = "0.2"
# wgpu-aware logging
Expand Down
6 changes: 3 additions & 3 deletions examples/imgui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "rend3-imgui-example"
license = "MIT OR Apache-2.0 OR Zlib"
version = "0.0.3"
version = "0.0.4"
authors = ["Connor Fitzgerald <connorwadefitzgerald@gmail.com>"]
edition = "2018"
publish = false
Expand All @@ -16,8 +16,8 @@ path = "src/main.rs"
# Linear algebra library
glam = "0.13"
# Renderer
rend3 = { path = "../../rend3", version = "^0.0.3"}
rend3-list = { path = "../../rend3-list", version = "^0.0.3"}
rend3 = { path = "../../rend3", version = "^0.0.4"}
rend3-list = { path = "../../rend3-list", version = "^0.0.4"}
# imgui and integrations
imgui = "0.7"
imgui-winit-support = "0.7"
Expand Down
8 changes: 4 additions & 4 deletions examples/scene-viewer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "rend3-scene-viewer-example"
license = "MIT OR Apache-2.0 OR Zlib"
version = "0.0.3"
version = "0.0.4"
authors = ["Connor Fitzgerald <connorwadefitzgerald@gmail.com>"]
edition = "2018"
publish = false
Expand All @@ -21,9 +21,9 @@ image = { version = "0.23", default-features = false, features = ["png", "jpeg",
histogram = "0.6"
pico-args = "0.4"
pollster = "0.2"
rend3 = { path = "../../rend3", version = "^0.0.3"}
rend3-gltf = { path = "../../rend3-gltf", version = "^0.0.3"}
rend3-list = { path = "../../rend3-list", version = "^0.0.3"}
rend3 = { path = "../../rend3", version = "^0.0.4"}
rend3-gltf = { path = "../../rend3-gltf", version = "^0.0.4"}
rend3-list = { path = "../../rend3-list", version = "^0.0.4"}
smallvec = "1"
tracing = { version = "0.1", default-features = false, features = ["std"] }
wgpu = "0.7"
Expand Down
4 changes: 2 additions & 2 deletions rend3-gltf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rend3-gltf"
version = "0.0.3"
version = "0.0.4"
authors = ["Connor Fitzgerald <connorwadefitzgerald@gmail.com>"]
edition = "2018"
description = "gltf scene and model loader for rend3"
Expand All @@ -16,5 +16,5 @@ glam = "0.13"
futures-util = "0.3"
fnv = "1"
image = "0.23"
rend3 = { version = "^0.0.3", path = "../rend3" }
rend3 = { version = "^0.0.4", path = "../rend3" }
thiserror = "1"
4 changes: 2 additions & 2 deletions rend3-list/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rend3-list"
version = "0.0.3"
version = "0.0.4"
authors = ["Connor Fitzgerald <connorwadefitzgerald@gmail.com>"]
edition = "2018"
description = "default renderlist rend3"
Expand All @@ -10,4 +10,4 @@ keywords = ["3d", "graphics", "gpu", "renderer", "wgpu"]
categories = ["game-development", "graphics", "rendering", "rendering::engine"]

[dependencies]
rend3 = { version = "^0.0.3", path = "../rend3" }
rend3 = { version = "^0.0.4", path = "../rend3" }
2 changes: 1 addition & 1 deletion rend3/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rend3"
version = "0.0.3"
version = "0.0.4"
authors = ["Connor Fitzgerald <connorwadefitzgerald@gmail.com>"]
edition = "2018"
description = "Easy to use, customizable, efficient 3D renderer library built on wgpu."
Expand Down
2 changes: 1 addition & 1 deletion rend3/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//! to your Cargo.toml:
//!
//! ```text
//! rend3 = "0.0.3"
//! rend3 = "0.0.4"
//! ```
//!
//! # Examples
Expand Down

0 comments on commit b6d7c96

Please sign in to comment.