Skip to content

Commit

Permalink
Update for v0.6.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
wilfwilson committed Dec 21, 2021
1 parent fcc86ae commit 26691ef
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 2 additions & 2 deletions PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ SetPackageInfo( rec(

PackageName := "BacktrackKit",
Subtitle := "An extensible, easy to understand backtracking framework",
Version := "0.6.0",
Date := "03/12/2021", # dd/mm/yyyy format
Version := "0.6.1",
Date := "21/12/2021", # dd/mm/yyyy format


Persons := [
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@ at https://github.com/peal/BacktrackKit/issues

## History


0.6.1
-----

* Rename `BTKit_Con` to `BTKit_Refiner`.
* Add constraints documentation from Vole
* Add `ProcessConstraints` and `BTKit_RefinerFromConstraint`

0.6.0
-----

Expand Down
2 changes: 1 addition & 1 deletion gap/refiner.gi
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ InstallMethod(DummyRefiner,
)
);

BTKit_ConstraintToRefiner := function(con)
BTKit_RefinerFromConstraint := function(con)
local action, source, result;

if HasIsEmptyConstraint(con) and IsEmptyConstraint(con) then
Expand Down

0 comments on commit 26691ef

Please sign in to comment.