Version bump: 0.3.0.

This commit is contained in:
David Wang 2017-03-12 08:15:56 +11:00
parent 889d12bf75
commit 80b84f4f90
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "puzzle-solver"
version = "0.2.0"
version = "0.3.0"
authors = ["David Wang <millimillenary@gmail.com>"]
homepage = "https://github.com/wangds/puzzle-solver.git"
repository = "https://github.com/wangds/puzzle-solver.git"
@ -8,7 +8,7 @@ documentation = "https://docs.rs/puzzle-solver/"
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"]
keywords = ["constraint", "finite", "domain", "puzzle", "sudoku"]
categories = ["science"]
[dependencies]

View File

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