mirror of
https://github.com/GothenburgBitFactory/timewarrior.git
synced 2025-07-07 20:06:39 +02:00
Enter commit hash for release 1.4.3
Set current version to `1.4.3-dev` Fix test `version.t` to correctly verify version string Signed-off-by: Thomas Lauf <thomas.lauf@tngtech.com>
This commit is contained in:
parent
fc618636aa
commit
35dc22c8ef
3 changed files with 3 additions and 3 deletions
|
@ -7,7 +7,7 @@ project (timew)
|
||||||
include (CXXSniffer)
|
include (CXXSniffer)
|
||||||
include (FindAsciidoctor)
|
include (FindAsciidoctor)
|
||||||
|
|
||||||
set (PROJECT_VERSION "1.4.3")
|
set (PROJECT_VERSION "1.4.3-dev")
|
||||||
|
|
||||||
string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE)
|
string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE)
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
------ current release ---------------------------
|
------ 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
|
- #159 Tags enclosed in escaped double-quotes are not handled correctly
|
||||||
(thanks to Shaun Ruffell)
|
(thanks to Shaun Ruffell)
|
||||||
|
|
|
@ -44,7 +44,7 @@ class TestVersion(TestCase):
|
||||||
def test_version_option(self):
|
def test_version_option(self):
|
||||||
"""Verify that 'timew --version' returns something valid"""
|
"""Verify that 'timew --version' returns something valid"""
|
||||||
code, out, err = self.t("--version")
|
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__":
|
if __name__ == "__main__":
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue