Skip to content

Commit

Permalink
RELEASE ticketutil 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dmranck committed Apr 28, 2017
1 parent 44c8d72 commit 0585f17
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
12 changes: 12 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
Release History
---------------

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

* ServiceNow support has been added to ticketutil!

- ticketutil/servicenow.py has been created, supporting main ticketing
functions found in other tools.
- tests/test_servicenow.py has been created, containing unit tests for
servicenow.py.
- Two new documentation files have been created: docs/servicenow.md and
examples/servicenow_examples.md.

1.1.0 (04-18-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.1.0
:target: https://pypi.python.org/pypi/ticketutil/1.2.0

.. image:: https://img.shields.io/badge/pypi-v1.1.0-blue.svg
:target: https://pypi.python.org/pypi/ticketutil/1.1.0
.. image:: https://img.shields.io/badge/pypi-v1.2.0-blue.svg
:target: https://pypi.python.org/pypi/ticketutil/1.2.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.1.0',
version='1.2.0',
description='Python ticketing utility supporting JIRA, RT, Redmine, and Bugzilla',
author='Danny Ranck',
author_email='dmranck@gmail.com',
url='https://github.com/dmranck/ticketutil',
download_url='https://github.com/dmranck/ticketutil/tarball/1.1.0',
download_url='https://github.com/dmranck/ticketutil/tarball/1.2.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 0585f17

Please sign in to comment.