Skip to content

Commit 94447fe

Browse files
Copilotirfan-sec
andcommitted
Release version 2.0.1 with maintained pylint compliance
Co-authored-by: irfan-sec <222970132+irfan-sec@users.noreply.github.com>
1 parent d3c7780 commit 94447fe

4 files changed

Lines changed: 10 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [2.0.1] - 2024-09-28
4+
5+
### Maintenance
6+
- **🐛 Code Quality**: Confirmed pylint compliance (10.00/10 rating maintained)
7+
- **🏷️ Version Bump**: Updated version to 2.0.1 for maintenance release
8+
- **✅ Testing**: All existing tests continue to pass
9+
310
## [2.0.0] - 2024-09-06
411

512
### Major Upgrades

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "stegano-sec"
7-
version = "2.0.0"
7+
version = "2.0.1"
88
authors = [
99
{name = "Irfan Ali", email = "irfan.sec@example.com"}
1010
]

stegano/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
- Text files using whitespace/zero-width character encoding
88
"""
99

10-
__version__ = "2.0.0"
10+
__version__ = "2.0.1"
1111
__author__ = "Irfan Ali"
1212
__email__ = "irfan.sec@example.com"
1313

tests/test_basic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def test_version_import(self):
8484
# pylint: disable=import-outside-toplevel # Version import only needed in test
8585
from stegano import __version__
8686

87-
assert __version__ == "2.0.0"
87+
assert __version__ == "2.0.1"
8888

8989
def test_package_imports(self):
9090
"""Test that main functions can be imported"""

0 commit comments

Comments
 (0)