From 5d2d1a4f6ea98ba6f9b2a9deb202e0cd1d588d7d Mon Sep 17 00:00:00 2001 From: Tilman Hinnerichs Date: Tue, 27 Feb 2024 16:47:46 +0100 Subject: [PATCH 1/2] Update versions --- Project.toml | 18 +++++++++--------- src/Herb.jl | 10 +++++----- test/runtests.jl | 6 +++--- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Project.toml b/Project.toml index 032f990..ce5f4b2 100644 --- a/Project.toml +++ b/Project.toml @@ -1,25 +1,25 @@ name = "Herb" uuid = "c09c6b7f-4f63-49de-90d9-97a3563c0f4a" authors = ["Jaap de Jong ", "Tilman Hinnerichs ", "Sebastijan Dumancic "] -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" diff --git a/src/Herb.jl b/src/Herb.jl index 751e321..4812fb2 100644 --- a/src/Herb.jl +++ b/src/Herb.jl @@ -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 diff --git a/test/runtests.jl b/test/runtests.jl index c8209c6..7878150 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -2,10 +2,10 @@ module HerbTest using HerbConstraints using HerbCore -using HerbData using HerbInterpret using HerbGrammar using HerbSearch +using HerbSpecification using Test import Pkg @@ -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 From d0f61eac7827b89e1562bada0a223dc2be01d76e Mon Sep 17 00:00:00 2001 From: Reuben Gardos Reid <5456207+ReubenJ@users.noreply.github.com> Date: Fri, 15 Mar 2024 09:01:58 +0100 Subject: [PATCH 2/2] Configure CI to test on latest stable Julia version Additionally: bump GitHub checkout action to latest version to address warnings regarding Node 16 use in the v3 version of the action. --- .github/workflows/CI.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 53f53a8..bf71ad9 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -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 }}