Skip to content

Commit

Permalink
Merge pull request #323 from alteous/master
Browse files Browse the repository at this point in the history
Version 1.0.0
  • Loading branch information
IcanDivideBy0 committed Jan 29, 2022
2 parents 3437ee5 + da1ae99 commit f2ac783
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 10 deletions.
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,29 @@ The `gltf` crate adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## Unreleased

## [1.0.0] - 2022-01-29

### Added

- Support for the `KHR_materials_specular` extension.
- Support for the `KHR_materials_variants` extension.
- Support for the `KHR_materials_volume` extension.
- `ExactSizeIterator` implementation for `Joints` iterator.

### Changed

- The `mesh.primitives` property is now always serialized.

### Fixed

- Incorrect implementation of `Normalize<u16>` and `Normalize<f32>` for `u16`.

## [0.16.0] - 2021-05-13

### Added

- Support for the `KHR_texture_transform` extension.
- Support for the `KHR_materials_transmission_ior extension`.
- Support for the `KHR_materials_transmission_ior` extension.

### Changed

Expand Down
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Code of Conduct

Contributors are expected to abide by the [Rust code of conduct](https://www.rust-lang.org/en-US/conduct.html) and are encouraged to contact the author at alteous@outlook.com should confidential moderation be required.
Contributors are expected to abide by the [Rust code of conduct](https://www.rust-lang.org/en-US/conduct.html) and are encouraged to contact the author at david@harvey-macaulay.com should confidential moderation be required.
4 changes: 3 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@

Thank for you taking the time to contribute to `gltf`. Your contributions are valued, no matter how small.

## Branch conventions and pull requests
## Pull requests

* Please submit all pull requests to the `master` branch.
* Please format your patches with `rustfmt` to match the project's code style.
* Please note your changes in the project's CHANGELOG.md file under the 'Unreleased' section.

## Contribution opportunities

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.16.0"
version = "1.0.0"
authors = ["David Harvey-Macaulay <alteous@outlook.com>"]
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.12" }
byteorder = "1.3"
gltf-json = { path = "gltf-json", version = "0.16.0" }
gltf-json = { path = "gltf-json", version = "1.0.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 @@ -37,7 +37,7 @@ By default, `gltf` ignores all `extras` and `names` included with glTF assets. Y

```toml
[dependencies.gltf]
version = "0.16"
version = "1.0"
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.16.0"
version = "1.0.0"
authors = ["David Harvey-Macaulay <alteous@outlook.com>"]
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.16.0"
version = "1.0.0"
authors = ["David Harvey-Macaulay <alteous@outlook.com>"]
description = "JSON parsing for the gltf crate"
repository = "https://github.com/gltf-rs/gltf"
license = "MIT OR Apache-2.0"
edition = "2018"

[dependencies]
gltf-derive = { path = "../gltf-derive", version = "0.16.0" }
gltf-derive = { path = "../gltf-derive", version = "1.0.0" }
serde = "1.0"
serde_derive = "1.0"
serde_json = { features = ["raw_value"], version = "1.0" }
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
//!
//! ```toml
//! [dependencies.gltf]
//! version = "0.16"
//! version = "1.0"
//! ```
//!
//! # Examples
Expand Down

0 comments on commit f2ac783

Please sign in to comment.