diff --git a/CHANGELOG.md b/CHANGELOG.md index 7239eb3..76f88ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,3 +27,18 @@ - Generating classes now congnizant of execution context to facilitate generation ### Removed + +## [2.0.51] - 2024-09-06 + +### Added +- Added method to delete an uploaded attachment from its token id +- Added method to redact a ticket comment attachment +- Added tests covering those two actions + +### Fixed +- Fixed issue https://github.com/facetoe/zenpy/issues/350 + +### Changed +- README.md (New actions) + +### Removed diff --git a/pyproject.toml.XXX b/pyproject.toml.XXX index b0cbecf..4ec0ee8 100644 --- a/pyproject.toml.XXX +++ b/pyproject.toml.XXX @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "zenpy" -version = "2.0.50" +version = "2.0.51" authors = [ { name="William Coe", email="facetoe@facetoe.com.au" }, ] diff --git a/setup.py b/setup.py index 88c7178..c810242 100755 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name='zenpy', packages=setuptools.find_packages(), - version='2.0.50', + version='2.0.51', description='Python wrapper for the Zendesk API', long_description=long_description, long_description_content_type='text/markdown', @@ -16,7 +16,7 @@ author='Face Toe', author_email='facetoe@facetoe.com.au', url='https://github.com/facetoe/zenpy', - download_url='https://github.com/facetoe/zenpy/releases/tag/2.0.50', + download_url='https://github.com/facetoe/zenpy/releases/tag/2.0.51', install_requires=[ 'requests>=2.14.2', 'python-dateutil>=2.7.5', diff --git a/zenpy/__init__.py b/zenpy/__init__.py index 7c62e80..b81892e 100644 --- a/zenpy/__init__.py +++ b/zenpy/__init__.py @@ -60,7 +60,7 @@ log = logging.getLogger() __author__ = "facetoe" -__version__ = "2.0.50" +__version__ = "2.0.51" class Zenpy(object):