diff --git a/CMakeLists.txt b/CMakeLists.txt index ed9f5097..022d88b4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ project (timew) include (CXXSniffer) include (FindAsciidoctor) -set (PROJECT_VERSION "1.4.3") +set (PROJECT_VERSION "1.4.3-dev") string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE) diff --git a/ChangeLog b/ChangeLog index 0e3c5324..db99e6d3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,6 @@ ------ current release --------------------------- -1.4.3 (2021-05-28) - +1.4.3 (2021-05-28) - fc618636aacba6e52d447b482aeef58b375dfc8c - #159 Tags enclosed in escaped double-quotes are not handled correctly (thanks to Shaun Ruffell) diff --git a/test/version.t b/test/version.t index c4462ea2..1b2c0b95 100755 --- a/test/version.t +++ b/test/version.t @@ -44,7 +44,7 @@ class TestVersion(TestCase): def test_version_option(self): """Verify that 'timew --version' returns something valid""" code, out, err = self.t("--version") - self.assertRegex(out, r'^\d\.\d+\.\d+(\.\w+)?$') + self.assertRegex(out, r'^\d\.\d+\.\d+(-\w+)?$') if __name__ == "__main__":