Skip to content

Commit

Permalink
RELEASE ticketutil 1.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dmranck committed Jan 8, 2019
1 parent 7ec2b21 commit cf70a57
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 20 deletions.
12 changes: 1 addition & 11 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,17 +1,7 @@
Release History
---------------

1.4.2 (01-07-2019)
++++++++++++++++++

* Still fixing README on PyPI.

1.4.1 (01-07-2019)
++++++++++++++++++

* Fixing README on PyPI.

1.4.0 (01-07-2019)
1.4.3 (01-08-2019)
++++++++++++++++++

* Added get_ticket_content() method to jira.py, rt.py, redmine.py, and
Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ ticketutil
==========

.. image:: https://img.shields.io/badge/python-2.7%2C%203.3%2C%203.4%2C%203.5%2C%203.6-blue.svg
:target: https://pypi.python.org/pypi/ticketutil/1.4.2
:target: https://pypi.python.org/pypi/ticketutil/1.4.3

.. image:: https://img.shields.io/badge/pypi-v1.4.2-blue.svg
:target: https://pypi.python.org/pypi/ticketutil/1.4.2
.. image:: https://img.shields.io/badge/pypi-v1.4.3-blue.svg
:target: https://pypi.python.org/pypi/ticketutil/1.4.3

ticketutil is a Python module that allows you to easily interact with
various ticketing tools using their REST APIs. Currently, the supported
Expand Down
6 changes: 3 additions & 3 deletions read-the-docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ Welcome to ticketutil's documentation!
======================================

.. image:: https://img.shields.io/badge/python-2.7%2C%203.3%2C%203.4%2C%203.5%2C%203.6-blue.svg
:target: https://pypi.python.org/pypi/ticketutil/1.4.2
:target: https://pypi.python.org/pypi/ticketutil/1.4.3

.. image:: https://img.shields.io/badge/pypi-v1.4.2-blue.svg
:target: https://pypi.python.org/pypi/ticketutil/1.4.2
.. image:: https://img.shields.io/badge/pypi-v1.4.3-blue.svg
:target: https://pypi.python.org/pypi/ticketutil/1.4.3

ticketutil is a Python module that allows you to easily interact with
various ticketing tools using their REST APIs. Currently, the supported
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,14 @@
setup(
name='ticketutil',
packages=['ticketutil'],
version='1.4.2',
version='1.4.3',
description='Python ticketing utility supporting JIRA, RT, Redmine, Bugzilla, and ServiceNow',
long_description=long_description,
author='Danny Ranck',
author_email='dmranck@gmail.com',
url='https://github.com/dmranck/ticketutil',
download_url='https://github.com/dmranck/ticketutil/tarball/1.4.2',
download_url='https://github.com/dmranck/ticketutil/tarball/1.4.3',
keywords=['jira', 'bugzilla', 'rt', 'redmine', 'servicenow', 'ticket', 'rest'],
install_requires=['gssapi>=1.2.0', 'requests>=2.6.0', 'requests-kerberos>=0.8.0']
install_requires=['gssapi>=1.2.0', 'requests>=2.6.0', 'requests-kerberos>=0.8.0'],
data_files=[('.', ['HISTORY.rst'])]
)

0 comments on commit cf70a57

Please sign in to comment.