Skip to content

Commit

Permalink
Updated changelogs and Cargo.tomls.
Browse files Browse the repository at this point in the history
  • Loading branch information
hadronized committed Dec 1, 2016
1 parent 928730a commit e972461
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
5 changes: 5 additions & 0 deletions luminance-gl/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.11.0

- `UniformWarning::TypeMismatch` now includes the name of the uniform which type mismatches with the
requested on.

## 0.10.0

- Changed the pipeline workflow by introducing `Pipe` objects.
Expand Down
4 changes: 2 additions & 2 deletions luminance-gl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "luminance-gl"
version = "0.10.0"
version = "0.11.0"
license = "BSD-3-Clause"
authors = ["Dimitri 'phaazon' Sabadie <dimitri.sabadie@gmail.com>"]
description = "OpenGL backends for luminance"
Expand All @@ -16,4 +16,4 @@ gl33 = []

[dependencies]
gl = "0.5.2"
luminance = { version = "0.13.0", path = "../luminance" }
luminance = { version = "0.14.0", path = "../luminance" }
8 changes: 8 additions & 0 deletions luminance/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 0.14

- `UniformWarning::TypeMismatch` now includes the name of the uniform which type mismatches with the
requested on.
- `Pipeline::Pipe` is now exported by the common interface.
- `Uniform::sem` doesn’t require `&self` anymore.
- `Uniform::new` is now a const fn.

### 0.13.1

- Added `Uniform::sem()` function to create `Sem` out of `Uniform<C, T>` in a simpler way.
Expand Down
2 changes: 1 addition & 1 deletion luminance/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "luminance"
version = "0.13.1"
version = "0.14.0"
license = "BSD-3-Clause"
authors = ["Dimitri Sabadie <dimitri.sabadie@gmail.com>"]
description = "Stateless and type-safe graphics framework"
Expand Down

0 comments on commit e972461

Please sign in to comment.