Skip to content

Commit

Permalink
Release v0.17.
Browse files Browse the repository at this point in the history
  • Loading branch information
sebcrozet committed Jul 20, 2018
1 parent fec8636 commit 0b70221
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 11 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,9 @@ documented here.

This project adheres to [Semantic Versioning](http://semver.org/).

## [0.16.0] and [0.17.0]
Those two released are mostly composed of bug-fixes and dependencies updates.

## [0.15.0]
### Added
* This re-adds time-of-impact computation in the `query`module.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -29,8 +29,8 @@ Simply add one the following (or both) to your `Cargo.toml` file:

```
[dependencies]
ncollide2d = "0.16" # For 2D collision detection.
ncollide3d = "0.16" # For 3D collision detection.
ncollide2d = "0.17" # For 2D collision detection.
ncollide3d = "0.17" # For 3D collision detection.
```


Expand Down
2 changes: 1 addition & 1 deletion build/ncollide2d/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "ncollide2d"
version = "0.16.2"
version = "0.17.0"
authors = [ "Sébastien Crozet <developer@crozet.re>" ]

description = "2 and 3-dimensional collision detection library in Rust."
Expand Down
4 changes: 2 additions & 2 deletions build/ncollide3d/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "ncollide3d"
version = "0.16.2"
version = "0.17.0"
authors = [ "Sébastien Crozet <developer@crozet.re>" ]

description = "2 and 3-dimensional collision detection library in Rust."
Expand Down Expand Up @@ -29,4 +29,4 @@ approx = { version = "0.3", default-features = false }
rand = { version = "0.5", default-features = false }

[dev-dependencies]
ncollide2d = { version = "0.16", path = "../ncollide2d" }
ncollide2d = { version = "0.17", path = "../ncollide2d" }
4 changes: 2 additions & 2 deletions ncollide_testbed2d/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "ncollide_testbed2d"
version = "0.5.0"
version = "0.6.0"
authors = [ "Sébastien Crozet <developer@crozet.re>" ]

description = "2D testbed for ncollide."
Expand All @@ -23,5 +23,5 @@ rand = "0.5"
sfml = "0.11"
alga = "0.7"
nalgebra = "0.16"
ncollide2d = "0.16"
ncollide2d = "0.17"
mpeg_encoder = { version = "0.2", optional = true }
4 changes: 2 additions & 2 deletions ncollide_testbed3d/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "ncollide_testbed3d"
version = "0.5.0"
version = "0.6.0"
authors = [ "Sébastien Crozet <developer@crozet.re>" ]

description = "3D testbed for ncollide."
Expand All @@ -23,4 +23,4 @@ num-traits = "0.2"
kiss3d = "0.15"
mpeg_encoder = { version = "0.2", optional = true }
nalgebra = "0.16"
ncollide3d = "0.16"
ncollide3d = "0.17"
4 changes: 2 additions & 2 deletions src/lib.rs
Expand Up @@ -19,8 +19,8 @@ Simply add the following to your `Cargo.toml` file:
```.ignore
[dependencies]
ncollide2d = "0.16" # For 2D collision detection.
ncollide3d = "0.16" # For 3D collision detection.
ncollide2d = "0.17" # For 2D collision detection.
ncollide3d = "0.17" # For 3D collision detection.
```
Expand Down

0 comments on commit 0b70221

Please sign in to comment.