Version bump: 0.2.0.

This commit is contained in:
David Wang 2017-03-05 08:58:06 +11:00
parent bfb85a9f1d
commit 9f9549ee56
2 changed files with 3 additions and 3 deletions

View File

@ -1,11 +1,11 @@
[package]
name = "puzzle-solver"
version = "0.1.0"
version = "0.2.0"
authors = ["David Wang <millimillenary@gmail.com>"]
homepage = "https://github.com/wangds/puzzle-solver.git"
repository = "https://github.com/wangds/puzzle-solver.git"
documentation = "https://docs.rs/puzzle-solver/"
description = "Solve logic puzzles by describing their constraints. Suitable for puzzles such as Sudoku."
description = "Solve logic puzzles by describing their constraints. Suitable for puzzles such as Sudoku and Kakuro."
license = "MIT"
readme = "README.md"
keywords = ["constraint", "puzzle", "sudoku"]

View File

@ -54,7 +54,7 @@ Add Puzzle Solver as a dependency to your project's Cargo.toml:
```toml
[dependencies]
puzzle-solver = "0.1"
puzzle-solver = "0.2"
```
Import the library in your project, e.g.: