Skip to content

Commit

Permalink
Merge pull request #5 from pepkit/dev
Browse files Browse the repository at this point in the history
v0.0.4
  • Loading branch information
stolarczyk authored Apr 2, 2021
2 parents e878e27 + 532fcff commit 8421711
Show file tree
Hide file tree
Showing 10 changed files with 165 additions and 98 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/black.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: psf/black@stable
- uses: psf/black@20.8b1
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
__pycache__
*.py[cod]
*$py.class
__pycache__/

# C extensions
*.so
Expand Down Expand Up @@ -131,4 +132,4 @@ venv.bak/
dmypy.json

# Pyre type checker
.pyre/
.pyre/
21 changes: 21 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.4.0
hooks:
- id: trailing-whitespace
- id: check-yaml
- id: check-json
- id: end-of-file-fixer
- id: name-tests-test
- id: requirements-txt-fixer
- id: trailing-whitespace

- repo: https://github.com/psf/black
rev: 20.8b1
hooks:
- id: black

- repo: https://github.com/PyCQA/isort
rev: 5.7.0
hooks:
- id: isort
12 changes: 9 additions & 3 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
# Changelog

This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) and [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) format.
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) and [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) format.

## [0.0.4] - 2021-04-02
### Added
- config validation
- typing in code


## [0.0.3] - 2021-03-12
### Added
- possibility to initialize the `PipestatManager` object (or use the `pipestat status` CLI) with no results schema defined for pipeline status management; [Issue #1](https://github.com/pepkit/pipestat/issues/1)
- possibility to initialize the `PipestatManager` object (or use the `pipestat status` CLI) with no results schema defined for pipeline status management; [Issue #1](https://github.com/pepkit/pipestat/issues/1)


## [0.0.2] - 2021-02-22
### Added
- initial package release
- initial package release
2 changes: 1 addition & 1 deletion pipestat/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.3"
__version__ = "0.0.4"
Loading

0 comments on commit 8421711

Please sign in to comment.