Skip to content

Commit

Permalink
HerbEvaluation -> HerbInterpret update version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
THinnerichs committed Sep 28, 2023
1 parent c108674 commit 6d1048f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 39 deletions.
8 changes: 4 additions & 4 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
name = "Herb"
uuid = "c09c6b7f-4f63-49de-90d9-97a3563c0f4a"
authors = ["Jaap de Jong <[email protected]>", "Tilman Hinnerichs <[email protected]>", "Sebastijan Dumancic <[email protected]>"]
version = "0.1.0"
version = "0.1.1"

[deps]
HerbConstraints = "1fa96474-3206-4513-b4fa-23913f296dfc"
HerbCore = "2b23ba43-8213-43cb-b5ea-38c12b45bd45"
HerbData = "495a3ad3-8034-41b3-a087-aacf2fd71098"
HerbEvaluation = "eb1bf938-813d-4942-ac0f-b4657a683e76"
HerbGrammar = "4ef9e186-2fe5-4b24-8de7-9f7291f24af7"
HerbInterpret = "5bbddadd-02c5-4713-84b8-97364418cca7"
HerbSearch = "3008d8e8-f9aa-438a-92ed-26e9c7b4829f"
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"

[compat]
HerbConstraints = "0.1.0"
HerbCore = "0.1.1"
HerbData = "0.1.1"
HerbEvaluation = "0.1.0"
HerbGrammar = "0.1.0"
HerbSearch = "0.1.0"
HerbInterpret = "0.1.0"
HerbSearch = "0.1.1"
julia = "1.8"

[extras]
Expand Down
4 changes: 2 additions & 2 deletions src/Herb.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ using HerbCore
using HerbGrammar
using HerbConstraints
using HerbData
using HerbEvaluation
using HerbInterpret
using HerbSearch

export
HerbCore,
HerbGrammar,
HerbConstraints,
HerbData,
HerbEvaluation,
HerbInterpret,
HerbSearch

end # module
6 changes: 3 additions & 3 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module HerbTest
using HerbConstraints
using HerbCore
using HerbData
using HerbEvaluation
using HerbInterpret
using HerbGrammar
using HerbSearch

Expand All @@ -18,8 +18,8 @@ import Pkg
Pkg.test("HerbCore")
println("\n--- HerbData tests ---")
Pkg.test("HerbData")
println("\n--- HerbEvaluation tests ---")
Pkg.test("HerbEvaluation")
println("\n--- HerbInterpret tests ---")
Pkg.test("HerbInterpret")
println("\n--- HerbGrammar tests ---")
Pkg.test("HerbGrammar")
println("\n--- HerbSearch tests ---")
Expand Down
30 changes: 0 additions & 30 deletions test/runtests.jl_copy

This file was deleted.

2 comments on commit 6d1048f

@THinnerichs
Copy link
Member Author

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/92389

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.1.1 -m "<description of version>" 6d1048f2d6ea1aecd30056567904580be95a3a71
git push origin v0.1.1

Please sign in to comment.