Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes Bechberger committed Aug 20, 2020
1 parent 1dafa11 commit 8654c90
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 6 deletions.
16 changes: 15 additions & 1 deletion doc/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
Changelog
=========

0.8.2
-----
- improve HTML2 reporter
- fix typos
- change "error" into "severe warning"
- support disabling warnings alltogether
- clean up duplicates
- further improve the summary section
- support zoomed out graphs (make this the default)
- use local copy of all JS and CSS (no works offline)
- record some information on the execution environment
- don't build kernel modules by default
- remove meta analysis code

0.8.1
-----
- fixed minor issues
Expand All @@ -9,4 +23,4 @@ Changelog
0.8.0
-----
- removed the randomization features from the builder
- removed the html reporter (use the html2 reporter instead)
- removed the html reporter (use the html2 reporter instead)
5 changes: 3 additions & 2 deletions temci/scripts/cli.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import locale
from enum import Enum
import datetime

from temci.utils.number import FNumber
from temci.utils.plugin import load_plugins
Expand Down Expand Up @@ -47,7 +48,7 @@ class ErrorCode(Enum):


@click.group(epilog="""
temci (version {}) Copyright (C) 2019 Johannes Bechberger
temci (version {}) Copyright (C) {} Johannes Bechberger
This program comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it
Expand All @@ -59,7 +60,7 @@ class ErrorCode(Enum):
Plugins are loaded from `~/.temci` and from the environment
variable `TEMCI_PLUGIN_PATH` (colon separated paths).
""".format(temci.scripts.version.version))
""".format(temci.scripts.version.version, datetime.datetime.now().year))
def cli():
if "TEMCI_ENV" in os.environ:
Settings()["env"] = json.loads(os.getenv("TEMCI_ENV"))
Expand Down
4 changes: 1 addition & 3 deletions temci/scripts/version.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
"""
Contains the current version of temci.
The first number gives the major version and the second the minor version.
Versions with uneven minor version number are considered beta.
"""

version = "0.8.1"
version = "0.8.2"
""" The current version of temci """

0 comments on commit 8654c90

Please sign in to comment.