Skip to content

Commit

Permalink
Merge pull request #121 from Herb-AI/dev
Browse files Browse the repository at this point in the history
`dev` -> `master`
  • Loading branch information
ReubenJ authored Oct 3, 2024
2 parents 24c3600 + 9ce0ce3 commit 1876d08
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "HerbSearch"
uuid = "3008d8e8-f9aa-438a-92ed-26e9c7b4829f"
authors = ["Sebastijan Dumancic <[email protected]>", "Jaap de Jong <[email protected]>", "Nicolae Filat <[email protected]>", "Piotr Cichoń <[email protected]>", "Tilman Hinnerichs <[email protected]>"]
version = "0.3.0"
version = "0.3.1"

[deps]
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
Expand All @@ -19,7 +19,7 @@ StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
DataStructures = "0.17,0.18"
HerbConstraints = "^0.2.0"
HerbCore = "^0.3.0"
HerbGrammar = "^0.3.0"
HerbGrammar = "^0.4.0"
HerbInterpret = "^0.1.3"
HerbSpecification = "^0.1.0"
MLStyle = "^0.4.17"
Expand Down
3 changes: 3 additions & 0 deletions test/test_constraints.jl
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ using HerbCore, HerbGrammar, HerbConstraints

forbidden_sequence2 = ForbiddenSequence([4, 5], ignore_if=[3])

forbidden_sequence3 = ForbiddenSequence([4, 1], ignore_if=[5])

forbidden = Forbidden(RuleNode(3, [RuleNode(3, [VarNode(:a)])]))

forbidden2 = Forbidden(RuleNode(4, [
Expand Down Expand Up @@ -82,6 +84,7 @@ using HerbCore, HerbGrammar, HerbConstraints
("Contains", contains),
("ForbiddenSequence", forbidden_sequence),
("ForbiddenSequence2", forbidden_sequence2),
("ForbiddenSequence3", forbidden_sequence3),
("Forbidden", forbidden),
("Forbidden2", forbidden2),
("Ordered", ordered),
Expand Down

2 comments on commit 1876d08

@ReubenJ
Copy link
Member Author

@ReubenJ ReubenJ commented on 1876d08 Oct 3, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/116522

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.3.1 -m "<description of version>" 1876d080484a82707ad292337e36735587c87471
git push origin v0.3.1

Please sign in to comment.