From 4b30f52216f2041c9a8563425bc486e05b9f30b5 Mon Sep 17 00:00:00 2001 From: David Harvey-Macaulay Date: Wed, 24 Jul 2019 18:37:37 +0100 Subject: [PATCH] Version 0.13.0 --- CHANGELOG.md | 5 +++-- Cargo.toml | 4 ++-- README.md | 2 +- gltf-derive/Cargo.toml | 2 +- gltf-json/Cargo.toml | 4 ++-- src/lib.rs | 4 ++-- 6 files changed, 11 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fc563dee..3fbc1f28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/Cargo.toml b/Cargo.toml index 9283106f..e7fa0fa4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gltf" -version = "0.12.0" +version = "0.13.0" authors = ["David Harvey-Macaulay "] description = "glTF 2.0 loader" documentation = "https://docs.rs/gltf" @@ -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] diff --git a/README.md b/README.md index ba8d154a..2e9cf04b 100644 --- a/README.md +++ b/README.md @@ -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"] ``` diff --git a/gltf-derive/Cargo.toml b/gltf-derive/Cargo.toml index 3503230f..8c265994 100644 --- a/gltf-derive/Cargo.toml +++ b/gltf-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gltf-derive" -version = "0.12.0" +version = "0.13.0" authors = ["David Harvey-Macaulay "] description = "Internal macros for the gltf crate" repository = "https://github.com/gltf-rs/gltf" diff --git a/gltf-json/Cargo.toml b/gltf-json/Cargo.toml index c974a3c0..40c92830 100644 --- a/gltf-json/Cargo.toml +++ b/gltf-json/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gltf-json" -version = "0.12.0" +version = "0.13.0" authors = ["David Harvey-Macaulay "] description = "JSON parsing for the gltf crate" repository = "https://github.com/gltf-rs/gltf" @@ -8,7 +8,7 @@ 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" } diff --git a/src/lib.rs b/src/lib.rs index e9c45af9..3ed94c09 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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