From 9f9549ee56b4cf12e68eedf3604f33db04f9943c Mon Sep 17 00:00:00 2001 From: David Wang Date: Sun, 5 Mar 2017 08:58:06 +1100 Subject: [PATCH] Version bump: 0.2.0. --- Cargo.toml | 4 ++-- README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 92aedb5..44e387b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "puzzle-solver" -version = "0.1.0" +version = "0.2.0" authors = ["David Wang "] 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"] diff --git a/README.md b/README.md index 479e79c..eace3da 100644 --- a/README.md +++ b/README.md @@ -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.: