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 Aug 22, 2021
1 parent 674b962 commit 5dee87f
Show file tree
Hide file tree
Showing 11 changed files with 23 additions and 17 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ 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.6](#v006)
- [v0.0.5](#v005)
- [v0.0.4](#v004)
- [v0.0.3](#v003)
Expand All @@ -15,6 +16,10 @@ and this project adheres to cargo's version of [Semantic Versioning](https://sem

## Unreleased

## v0.0.6

Released 2021-08-22

### Added
- `rend3_types` crate with all datatypes.

Expand Down Expand Up @@ -78,7 +83,8 @@ Released 2021-03-06

## Diffs

- [Unreleased](https://github.com/BVE-Reborn/rend3/compare/v0.0.5...HEAD)
- [Unreleased](https://github.com/BVE-Reborn/rend3/compare/v0.0.6...HEAD)
- [v0.0.6](https://github.com/BVE-Reborn/rend3/compare/v0.0.5...v0.0.6)
- [v0.0.5](https://github.com/BVE-Reborn/rend3/compare/v0.0.4...v0.0.5)
- [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)
Expand Down
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 @@ -17,7 +17,7 @@ very similar throughout development.
To use rend3 add the following to your Cargo.toml:

```
rend3 = "0.0.5"
rend3 = "0.0.6"
```

## Examples
Expand Down
2 changes: 1 addition & 1 deletion 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.5"
version = "0.0.6"
authors = ["Connor Fitzgerald <[email protected]>"]
edition = "2018"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion 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.5"
version = "0.0.6"
authors = ["Connor Fitzgerald <[email protected]>"]
edition = "2018"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion 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.5"
version = "0.0.6"
authors = ["Connor Fitzgerald <[email protected]>"]
edition = "2018"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion 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.5"
version = "0.0.6"
authors = ["Connor Fitzgerald <[email protected]>"]
edition = "2018"
description = "gltf scene and model loader for rend3"
Expand Down
2 changes: 1 addition & 1 deletion rend3-pbr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rend3-pbr"
version = "0.0.5"
version = "0.0.6"
authors = ["Connor Fitzgerald <[email protected]>"]
edition = "2018"
description = "Type definitions for rend3"
Expand Down
2 changes: 1 addition & 1 deletion rend3-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rend3-types"
version = "0.0.5"
version = "0.0.6"
authors = ["Connor Fitzgerald <[email protected]>"]
edition = "2018"
description = "Type definitions for rend3"
Expand Down
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.5"
version = "0.0.6"
authors = ["Connor Fitzgerald <[email protected]>"]
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 @@ -7,7 +7,7 @@
//! To use rend3 add the following to your Cargo.toml:
//!
//! ```text
//! rend3 = "0.0.5"
//! rend3 = "0.0.6"
//! ```
//!
//! # Examples
Expand Down

0 comments on commit 5dee87f

Please sign in to comment.