Skip to content

Commit

Permalink
Merge pull request #240 from alteous/v0.13
Browse files Browse the repository at this point in the history
Version 0.13.0
  • Loading branch information
alteous authored Jul 27, 2019
2 parents b9a36ba + 4b30f52 commit d3cb010
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 10 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ 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).

## Unreleased
## [0.13.0] - 2019-07-27

### Added

Expand All @@ -16,11 +16,12 @@ The `gltf` crate adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Changed

- Renamed `validate_minimally` as `validate`.
- Removed depedency on `cgmath`.
- Removed dependency on `cgmath`.

### Fixed

- Incorrect version in README instructions.
- Compiler warnings.

### Removed

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.12.0"
version = "0.13.0"
authors = ["David Harvey-Macaulay <[email protected]>"]
description = "glTF 2.0 loader"
documentation = "https://docs.rs/gltf"
Expand All @@ -24,7 +24,7 @@ approx = "0.3"
[dependencies]
base64 = { optional = true, version = "0.10" }
byteorder = "1.1"
gltf-json = { path = "gltf-json", version = "0.12.0" }
gltf-json = { path = "gltf-json", version = "0.13.0" }
lazy_static = "1"

[dependencies.image]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ By default, `gltf` ignores all `extras` and `names` included with glTF assets. Y

```toml
[dependencies.gltf]
version = "0.12"
version = "0.13"
features = ["extras", "names"]
```

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.12.0"
version = "0.13.0"
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,14 +1,14 @@
[package]
name = "gltf-json"
version = "0.12.0"
version = "0.13.0"
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"
edition = "2018"

[dependencies]
gltf-derive = { path = "../gltf-derive", version = "0.12.0" }
gltf-derive = { path = "../gltf-derive", version = "0.13.0" }
serde = "1.0"
serde_derive = "1.0"
serde_json = { features = ["raw_value"], version = "1.0" }
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
//!
//! # Installation
//!
//! Add `gltf` version 0.12 to your `Cargo.toml`.
//! Add `gltf` version 0.13 to your `Cargo.toml`.
//!
//! ```toml
//! [dependencies.gltf]
//! version = "0.12"
//! version = "0.13"
//! ```
//!
//! # Examples
Expand Down

0 comments on commit d3cb010

Please sign in to comment.