Skip to content

Commit

Permalink
Merge pull request #61 from brootware/dev
Browse files Browse the repository at this point in the history
fixing cli breaking change
  • Loading branch information
brootware authored Jul 24, 2022
2 parents 765cc9d + d6d740e commit 7004e30
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
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 <[email protected]>"]
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

0 comments on commit 7004e30

Please sign in to comment.