Skip to content

Commit 7004e30

Browse files
authored
Merge pull request #61 from brootware/dev
fixing cli breaking change
2 parents 765cc9d + d6d740e commit 7004e30

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Installing Python Poetry
2626
run: pip install poetry
2727

28-
- name: Install and Build pyredactkit Package
28+
- name: Install and Build PyRedactKit Package
2929
run: |
3030
poetry install
3131
poetry build

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,14 @@ and simply didn't have the time to go back and retroactively create one.
1818

1919
- None at the moment.
2020

21+
## [0.3.6] - 2022-07-24
22+
23+
Noticed cli breaking changes in 0.3.5. Fixed in 0.3.6.
24+
25+
### Changed
26+
27+
- Noticed cli breaking changes in 0.3.5. Fixed in 0.3.6.
28+
2129
## [0.3.5] - 2022-07-24
2230

2331
Made fixes to the api, refactored pyredactkit to runner.

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "pyredactkit"
7-
version = "0.3.5"
7+
version = "0.3.6"
88
description = "Python cli tool to redact sensitive data"
99
authors = ["brootware <brootware@outlook.com>"]
1010
license = "GPL-3.0-or-later"
@@ -51,8 +51,8 @@ pytest-cov = "^3.0.0"
5151
pytest-mock = "^3.8.2"
5252

5353
[tool.poetry.scripts]
54-
pyredactkit = "pyredactkit.pyredactkit:main"
55-
prk = "pyredactkit.pyredactkit:main"
54+
pyredactkit = "pyredactkit.runner:main"
55+
prk = "pyredactkit.runner:main"
5656

5757
[tool.pytest.ini_options]
5858
minversion = "2.0"

0 commit comments

Comments
 (0)