Skip to content

Commit

Permalink
RELEASE ticketutil 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dmranck committed Jun 29, 2017
1 parent c9a16b0 commit 4e71305
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 8 deletions.
11 changes: 11 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
Release History
---------------

1.3.0 (06-29-2017)
++++++++++++++++++

* New documentation has been created at http://ticketutil.readthedocs.io.
* All main user-accessible ticketutil methods now have useful return
statements containing the request status (Success or Failure), the error
message if the status is a Failure, and the URL of the ticket. See
http://ticketutil.readthedocs.io/en/latest/Usage.html#return-statements
for more details.
* HTTP Basic Auth support has been added to JIRA.

1.2.0 (04-28-2017)
++++++++++++++++++

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.2.0
:target: https://pypi.python.org/pypi/ticketutil/1.3.0

.. image:: https://img.shields.io/badge/pypi-v1.2.0-blue.svg
:target: https://pypi.python.org/pypi/ticketutil/1.2.0
.. image:: https://img.shields.io/badge/pypi-v1.3.0-blue.svg
:target: https://pypi.python.org/pypi/ticketutil/1.3.0

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.2.0
:target: https://pypi.python.org/pypi/ticketutil/1.3.0

.. image:: https://img.shields.io/badge/pypi-v1.2.0-blue.svg
:target: https://pypi.python.org/pypi/ticketutil/1.2.0
.. image:: https://img.shields.io/badge/pypi-v1.3.0-blue.svg
:target: https://pypi.python.org/pypi/ticketutil/1.3.0

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

0 comments on commit 4e71305

Please sign in to comment.