Skip to content

Commit

Permalink
Update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
THinnerichs authored and ReubenJ committed Mar 14, 2024
1 parent 6d1048f commit 5d2d1a4
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
18 changes: 9 additions & 9 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
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.1"
version = "0.2.0"

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

[compat]
HerbConstraints = "0.1.0"
HerbCore = "0.1.1"
HerbData = "0.1.1"
HerbGrammar = "0.1.0"
HerbInterpret = "0.1.0"
HerbSearch = "0.1.1"
julia = "1.8"
HerbConstraints = "^0.1.1"
HerbCore = "^0.2.0"
HerbInterpret = "^0.1.2"
HerbGrammar = "^0.2.1"
HerbSearch = "^0.2.0"
HerbSpecification = "^0.1.0"
julia = "^1.8"

[extras]
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
Expand Down
10 changes: 5 additions & 5 deletions src/Herb.jl
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
module Herb

using HerbCore
using HerbGrammar
using HerbConstraints
using HerbData
using HerbGrammar
using HerbInterpret
using HerbSearch
using HerbSpecification

export
HerbCore,
HerbGrammar,
HerbConstraints,
HerbData,
HerbGrammars,
HerbInterpret,
HerbSearch
HerbSearch,
HerbSpecification

end # module
6 changes: 3 additions & 3 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ module HerbTest

using HerbConstraints
using HerbCore
using HerbData
using HerbInterpret
using HerbGrammar
using HerbSearch
using HerbSpecification

using Test
import Pkg
Expand All @@ -16,14 +16,14 @@ import Pkg
Pkg.test("HerbConstraints")
println("\n--- HerbCore tests ---")
Pkg.test("HerbCore")
println("\n--- HerbData tests ---")
Pkg.test("HerbData")
println("\n--- HerbInterpret tests ---")
Pkg.test("HerbInterpret")
println("\n--- HerbGrammar tests ---")
Pkg.test("HerbGrammar")
println("\n--- HerbSearch tests ---")
Pkg.test("HerbSearch")
println("\n--- HerbSpecification tests ---")
Pkg.test("HerbSpecification")
end

end # module

0 comments on commit 5d2d1a4

Please sign in to comment.