Skip to content

Commit

Permalink
Increase version to 0.5.1 and require newest BacktrackKit (0.6.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
wilfwilson committed Dec 3, 2021
1 parent 8e5e9b0 commit a234fb2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
6 changes: 3 additions & 3 deletions PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ SetPackageInfo( rec(

PackageName := "GraphBacktracking",
Subtitle := "Super Secret Awesome Searching",
Version := "0.5.0",
Date := "02/08/2021", # dd/mm/yyyy format
Version := "0.5.1",
Date := "03/12/2021", # dd/mm/yyyy format

Persons := [
rec(
Expand Down Expand Up @@ -76,7 +76,7 @@ PackageDoc := rec(
Dependencies := rec(
GAP := ">= 4.11",
NeededOtherPackages := [
["BacktrackKit", ">=0.5.0"],
["BacktrackKit", ">=0.6.0"],
["digraphs", ">=1.1.1"],
["images", ">= 1.3.0"]
],
Expand Down
6 changes: 5 additions & 1 deletion gap/GraphBacktracking.gd
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@

#
# GraphBacktracking
#
# Implementations
#

DeclareGlobalFunction( "GB_SimpleSearch" );

Expand Down
1 change: 0 additions & 1 deletion gap/GraphBacktracking.gi
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
# Implementations
#


DeclareRepresentation("IsGBState", IsBacktrackableState and IsBTKitState, []);
BindGlobal("GBStateType", NewType(BacktrackableStateFamily,
IsGBState));
Expand Down

0 comments on commit a234fb2

Please sign in to comment.