Skip to content

Commit

Permalink
0.1.1: bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
richrobe committed Apr 5, 2023
1 parent 9850f04 commit ce928ee
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) (+ the Migration Guide),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.2.0] -
## Version 0.1.1 - April 05, 2023
### Bugfixes
- fixed circular import issue

## Version 0.1.0 - April 04, 2023
* Initial release

### Added
2 changes: 1 addition & 1 deletion carwatch/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""CARWatch: A Python package for improving the accuracy of cortisol awakening response sampling."""

__version__ = "0.1.0"
__version__ = "0.1.1"

from carwatch import examples # noqa: F401
from carwatch import labels # noqa: F401
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "carwatch"
version = "0.1.0"
version = "0.1.1"
description = "A Python package for the CARWatch framework to improve cortisol awakening response sampling."
authors = [
"Annika Muecke <[email protected]>",
Expand Down Expand Up @@ -70,4 +70,4 @@ _check_black = "black . --check"
_check_isort = "isort . --check"
check = { sequence = ["_check_black", "_check_isort", "lint"], help = "Check all potential format and linting issues." }
test = { cmd = "pytest --cov=carwatch --cov-report=term-missing --cov-report=xml", help = "Run Pytest with coverage." }
version = { script = "_tasks:task_update_version()" }
update_version = { script = "_tasks:task_update_version()" }

0 comments on commit ce928ee

Please sign in to comment.