Skip to content

Commit

Permalink
Merge pull request #56 from Herb-AI/dev
Browse files Browse the repository at this point in the history
Update version number for Herb 0.2.0
  • Loading branch information
ReubenJ authored Mar 15, 2024
2 parents 6d1048f + d0f61ea commit 5d5c114
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 18 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,14 @@ jobs:
matrix:
version:
- '1.8'
- '1'
- 'nightly'
os:
- ubuntu-latest
arch:
- x64
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
Expand Down
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 <jaapdejong15@gmail.com>", "Tilman Hinnerichs <t.r.hinnerichs@tudelft.nl>", "Sebastijan Dumancic <s.dumancic@tudelft.nl>"]
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

2 comments on commit 5d5c114

@ReubenJ
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()

Release Notes

  • HerbData has been replaced by HerbSpecification
  • HerbGrammar and HerbSearch both received breaking changes
    • See release notes for HerbGrammar here
    • and for HerbSearch here

@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/102921

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.2.0 -m "<description of version>" 5d5c114b04ceb70edf4614b3cc075fa04e9238df
git push origin v0.2.0

Please sign in to comment.