Skip to content

Commit

Permalink
Merge pull request #204 from alteous/master
Browse files Browse the repository at this point in the history
Version 0.11.3
  • Loading branch information
alteous authored Feb 21, 2019
2 parents 37f9f5d + 63249d0 commit 5d9ac9e
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 5 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,23 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).

The `gltf` crate adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [0.11.3] - 2019-02-21

### Added

- New function `gltf_json::Index::new` for export.
- Support for the `KHR_materials_pbrSpecularGlossiness` extension.
- Extra `Eq` and `PartialEq` implementations.

### Fixed

- `Accessor::min` is no longer serialized if `None`.
- `Extras::_allow_unknown_fields` is no longer serialized.
- `bufferView.byteOffset` is now optional.
- Node translation/rotation/scale values are now optional.
- Removed serialization of some default values.
- `extras::Void` is no longer serialized.

## [0.11.2] - 2018-07-08

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gltf"
version = "0.11.2"
version = "0.11.3"
authors = ["David Harvey-Macaulay <[email protected]>"]
description = "glTF 2.0 loader"
documentation = "https://docs.rs/gltf"
Expand All @@ -24,7 +24,7 @@ approx = "0.1.1"
base64 = { optional = true, version = "0.6" }
byteorder = "1.1"
cgmath = "0.15"
gltf-json = { path = "gltf-json", version = "0.11.2" }
gltf-json = { path = "gltf-json", version = "0.11.3" }
image = { optional = true, version = "0.19" }
lazy_static = "0.2"

Expand Down
2 changes: 1 addition & 1 deletion gltf-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gltf-derive"
version = "0.11.2"
version = "0.11.3"
authors = ["David Harvey-Macaulay <[email protected]>"]
description = "Internal macros for the gltf crate"
repository = "https://github.com/gltf-rs/gltf"
Expand Down
4 changes: 2 additions & 2 deletions gltf-json/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "gltf-json"
version = "0.11.2"
version = "0.11.3"
authors = ["David Harvey-Macaulay <[email protected]>"]
description = "JSON parsing for the gltf crate"
repository = "https://github.com/gltf-rs/gltf"
license = "MIT/Apache-2.0"

[dependencies]
gltf-derive = { path = "../gltf-derive", version = "0.11.2" }
gltf-derive = { path = "../gltf-derive", version = "0.11.3" }
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
Expand Down

0 comments on commit 5d9ac9e

Please sign in to comment.