diff --git a/CMakeLists.txt b/CMakeLists.txt index 265a102..1014db1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.12) # Also update version in nihtest/__main__.py and pyproject.toml project(nihtest - VERSION 1.7.0 + VERSION 1.8.0 DESCRIPTION "NiH testing framework" HOMEPAGE_URL "https://github.com/nih-at/nihtest" LANGUAGES C) diff --git a/NEWS.md b/NEWS.md index e35d920..eae9273 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,7 @@ +# 1.8.0 [2024-06-07] + +- Prefer custom path to system path. + # 1.7.0 [2024-04-19] - Add `test-case-source` directory for better support of script generated test cases. diff --git a/nihtest/__main__.py b/nihtest/__main__.py index 2dd7749..a550fa8 100644 --- a/nihtest/__main__.py +++ b/nihtest/__main__.py @@ -4,7 +4,7 @@ from nihtest import Test from nihtest import Configuration -VERSION = "1.7.0" +VERSION = "1.8.0" def main(): diff --git a/pyproject.toml b/pyproject.toml index 7867fb2..ef99340 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "nihtest" -version = "1.7.0" +version = "1.8.0" authors = [ { name="Dieter Baron", email="dillo@nih.at" }, { name="Thomas Klausner", email="wiz@gatalith.at"} @@ -30,7 +30,7 @@ dependencies = [ nihtest = "nihtest.__main__:main" [tool.bumpver] -current_version = "1.7.0" +current_version = "1.8.0" version_pattern = "MAJOR.MINOR.PATCH" [tool.bumpver.file_patterns]