Skip to content

Commit

Permalink
Release v0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Gui-Yom committed Aug 31, 2021
1 parent a4707b6 commit 6390f24
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 35 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,25 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

[Unreleased]: https://github.com/Gui-Yom/nuance/compare/v0.3.1...HEAD

## [0.3.1] - 2021-08-31

### Added

- Add tooltips to the UI
- Add a manual reload button

### Changed

- Code structure has been refactored heavily

### Fixed

- No more warning when accessing a vector parameter component
- Dx12 is no more the forced wgpu backend (even on linux), that was a bug

[Unreleased]: https://github.com/Gui-Yom/nuance/compare/v0.3.0...HEAD
[0.3.1]: https://github.com/Gui-Yom/nuance/compare/v0.3.0...v0.3.1

## [0.3.0] - 2021-07-25

Expand Down
62 changes: 31 additions & 31 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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nuance"
version = "0.4.0"
version = "0.3.1"
authors = ["Guillaume Anthouard <[email protected]>"]
edition = "2018"
include = ["src/**/*", "LICENSE", "README.md"]
Expand Down
3 changes: 1 addition & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
use crevice::std430::AsStd430;
use mint::Vector2;
//! This library contains code to parse, load and render shaders on the GPU
pub use shader::*;

Expand Down
1 change: 1 addition & 0 deletions src/shader/mod.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use std::path::PathBuf;

use crevice::std140;
use crevice::std430::AsStd430;
use mint::{Vector2, Vector3};

pub mod loader;
Expand Down

0 comments on commit 6390f24

Please sign in to comment.