From 80b84f4f905a84752c3bdf09c9b768f01a223355 Mon Sep 17 00:00:00 2001 From: David Wang Date: Sun, 12 Mar 2017 08:15:56 +1100 Subject: [PATCH] Version bump: 0.3.0. --- Cargo.toml | 4 ++-- README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 44e387b..b7b8d70 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "puzzle-solver" -version = "0.2.0" +version = "0.3.0" authors = ["David Wang "] 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] diff --git a/README.md b/README.md index 2d4bf11..28f30e5 100644 --- a/README.md +++ b/README.md @@ -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.: