From 2fe06da1588026746629d3d3fcd75525d4bb9c9d Mon Sep 17 00:00:00 2001 From: desty2k <55806660+desty2k@users.noreply.github.com> Date: Mon, 11 Oct 2021 16:55:57 +0200 Subject: [PATCH] UPD: bump version to 0.1.0, update changelog and development status --- CHANGELOG.md | 10 ++++++++++ deleter/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7033e3b..bb8ac67 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,14 @@ # Changelog +- 0.1.0: + - Add NT support to `SubprocessMethod` + - Do not show console window when running shell commands + - Run tests on 3 platforms and on 2 Python versions + - Change delete methods order + - Use `shlex.split` to split commands into lists of strings + - Remove `shell` and `capture_output` kwargs from all subprocess calls + - Run Python with `-m` argument in version test + - Update PyPI tags + - Change development status to alpha - 0.0.3: - Export `run` function diff --git a/deleter/__init__.py b/deleter/__init__.py index c8fde82..c56bffc 100644 --- a/deleter/__init__.py +++ b/deleter/__init__.py @@ -1,4 +1,4 @@ from deleter.core import register, unregister -__version__ = "0.0.3" +__version__ = "0.1.0" diff --git a/setup.py b/setup.py index b87338b..f6ae921 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ }, classifiers=[ - 'Development Status :: 2 - Pre-Alpha', + 'Development Status :: 3 - Alpha', 'License :: OSI Approved :: MIT License',