Skip to content

Commit aab78c6

Browse files
committed
Update version to 0.6.1
1 parent cf307d4 commit aab78c6

4 files changed

Lines changed: 3 additions & 7 deletions

File tree

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,3 @@ plugins = labtech.mypy_plugin
212212
* Build docs: `make docs-build`
213213
* Deploy docs to GitHub Pages: `make docs-github`
214214
* Docstring style follows the [Google style guide](https://google.github.io/styleguide/pyguide.html#38-comments-and-docstrings)
215-
216-
## TODO
217-
218-
* Add unit tests

labtech/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def run(self):
3131
3232
"""
3333

34-
__version__ = '0.6.0'
34+
__version__ = '0.6.1'
3535

3636
from .lab import Lab
3737
from .tasks import task

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "labtech"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
license = "GPL-3.0-only"
55
description = "Easily run experiment permutations with multi-processing and caching."
66
authors = ["Ben Denham <ben@denham.nz>"]

tests/labtech/test_init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33

44
def test_version():
5-
assert __version__ == '0.6.0'
5+
assert __version__ == '0.6.1'

0 commit comments

Comments
 (0)