Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v2.0.51 #650

Merged
merged 1 commit into from
Sep 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion pyproject.toml.XXX
Original file line number Diff line number Diff line change
Expand Up @@ -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="[email protected]" },
]
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -16,7 +16,7 @@
author='Face Toe',
author_email='[email protected]',
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',
Expand Down
2 changes: 1 addition & 1 deletion zenpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
log = logging.getLogger()

__author__ = "facetoe"
__version__ = "2.0.50"
__version__ = "2.0.51"


class Zenpy(object):
Expand Down