Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Installing Python Poetry
run: pip install poetry

- name: Install and Build pyredactkit Package
- name: Install and Build PyRedactKit Package
run: |
poetry install
poetry build
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,14 @@ and simply didn't have the time to go back and retroactively create one.

- None at the moment.

## [0.3.6] - 2022-07-24

Noticed cli breaking changes in 0.3.5. Fixed in 0.3.6.

### Changed

- Noticed cli breaking changes in 0.3.5. Fixed in 0.3.6.

## [0.3.5] - 2022-07-24

Made fixes to the api, refactored pyredactkit to runner.
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "pyredactkit"
version = "0.3.5"
version = "0.3.6"
description = "Python cli tool to redact sensitive data"
authors = ["brootware <brootware@outlook.com>"]
license = "GPL-3.0-or-later"
Expand Down Expand Up @@ -51,8 +51,8 @@ pytest-cov = "^3.0.0"
pytest-mock = "^3.8.2"

[tool.poetry.scripts]
pyredactkit = "pyredactkit.pyredactkit:main"
prk = "pyredactkit.pyredactkit:main"
pyredactkit = "pyredactkit.runner:main"
prk = "pyredactkit.runner:main"

[tool.pytest.ini_options]
minversion = "2.0"
Expand Down