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 Sep 13, 2021
1 parent 142b3a7 commit 9384abb
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 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.1.1](#v011)
- [v0.1.0](#v010)
- [v0.0.6](#v006)
- [v0.0.5](#v005)
Expand All @@ -17,6 +18,10 @@ and this project adheres to cargo's version of [Semantic Versioning](https://sem

## Unreleased

## v0.1.1

Released 2021-09-13

### Added
- rend3-pbr: `set_ambient_lighting` sets the ambient light value, making sure no lighting result is less than `ambient * color`.

Expand Down Expand Up @@ -138,7 +143,8 @@ Released 2021-03-06

## Diffs

- [Unreleased](https://github.com/BVE-Reborn/rend3/compare/v0.1.0...HEAD)
- [Unreleased](https://github.com/BVE-Reborn/rend3/compare/v0.1.1...HEAD)
- [v0.1.1](https://github.com/BVE-Reborn/rend3/compare/v0.1.0...v0.1.1)
- [v0.1.0](https://github.com/BVE-Reborn/rend3/compare/v0.0.6...v0.1.0)
- [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)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ the external api will only experience minor changes as features are added.
To use rend3 add the following to your Cargo.toml:

```
rend3 = "0.1.0"
rend3 = "0.1.1"
```

## Screenshots
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.1.0"
version = "0.1.1"
authors = ["Connor Fitzgerald <[email protected]>"]
edition = "2018"
description = "PBR Render Routine 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.1.0"
version = "0.1.1"
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 @@ -6,7 +6,7 @@
//! To use rend3 add the following to your Cargo.toml:
//!
//! ```text
//! rend3 = "0.1.0"
//! rend3 = "0.1.1"
//! ```
//!
//! # Screenshots
Expand Down

0 comments on commit 9384abb

Please sign in to comment.