Skip to content

Commit

Permalink
Version bump to 0.2.2 (#74)
Browse files Browse the repository at this point in the history
* Version bump to 0.2.2

- Added an entry in CHANGELOG.rst with highlights of this release
- Fixed URL paths with the new voxpupuli organization in README.rst
- Changing the author from Daniele Sluijters to Corey Hammerton in
  setup.py

* CHANGELOG.rst: Adding entry for change commited for #75

* CHANGELOG.rst: Adding entry for #80
  • Loading branch information
corey-hammerton committed May 7, 2016
1 parent 9d698e3 commit 2533be9
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 11 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@
Changelog
#########

0.2.2
=====

* Fixed URL Encoding found when querying the specific value of a macaddress
fact.
* Adding support for PuppetDB 4.0.0 information. Namely Adding a catalog_uuid
attribute to the Catalog type object. Adding code_id, catalog_uuid and
cached_catalog_status attributes to the Report type object.
* Removing unneeded sudo option from .travis.yml, this gave unnecessary
warning in the test environment.
* Updating the files under docs/ so https://pypuppetdb.readthedocs.org/en/latest/
can be updated
* Deprecating :func:`pypuppetdb.types.Report.events()` in favour of the new
events list variable.
* Renaming test-requirements.txt to requirements.txt

0.2.1
=====

Expand Down
17 changes: 10 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,23 @@
pypuppetdb
##########

.. image:: https://api.travis-ci.org/puppet-community/pypuppetdb.png
:target: https://travis-ci.org/puppet-community/pypuppetdb
.. image:: https://api.travis-ci.org/voxpupuli/pypuppetdb.png
:target: https://travis-ci.org/voxpupuli/pypuppetdb

.. image:: https://coveralls.io/repos/puppet-community/pypuppetdb/badge.png
:target: https://coveralls.io/repos/puppet-community/pypuppetdb
.. image:: https://coveralls.io/repos/voxpupuli/pypuppetdb/badge.png
:target: https://coveralls.io/repos/voxpupuli/pypuppetdb


pypuppetdtb is a library to work with PuppetDB's REST API. It is implemented
using the `requests`_ library.
.. _requests: http://docs.python-requests.org/en/latest/

**pypuppetdb >= 0.2.0 DOES work with PuppetDB 3. There is no support for
**pypuppetdb >= 0.2.0 requires PuppetDB 3.0.0 or later. There is no support for
previous versions beyond 0.1.1**

**pypuppetdb >= 0.2.2 supports PuppetDB 4.0.0. Backwards compatability with 3.x
is available.**

This library is a thin wrapper around the REST API providing some convinience
functions and objects to request and hold data from PuppetDB.

Expand All @@ -34,7 +37,7 @@ You can install this package from source or from PyPi.
.. code-block:: bash
$ git clone https://github.com/puppet-community/pypuppetdb
$ git clone https://github.com/voxpupuli/pypuppetdb
$ python setup.py install
If you wish to hack on it clone the repository but after that run:
Expand Down Expand Up @@ -192,7 +195,7 @@ be found on `IRCnet`_ and `Freenode`_ and idles in #puppet.
There's now also the #puppetboard channel on `Freenode`_ where we hang out
and answer questions related to pypuppetdb and Puppetboard.

.. _issue: https://github.com/nedap/pypuppetdb/issues
.. _issue: https://github.com/voxpupuli/pypuppetdb/issues
.. _@daenney: https://github.com/daenney
.. _IRCnet: http://www.ircnet.org
.. _Freenode: http://freenode.net
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ def run_tests(self):

setup(
name='pypuppetdb',
version='0.2.1',
author='Daniele Sluijters',
author_email='daniele.sluijters+pypi@gmail.com',
version='0.2.2',
author='Corey Hammerton',
author_email='corey.hammerton@gmail.com',
packages=find_packages(),
url='https://github.com/nedap/pypuppetdb',
url='https://github.com/voxpupuli/pypuppetdb',
license='Apache License 2.0',
description='Library for working with the PuppetDB REST API.',
long_description='\n'.join((README, CHANGELOG)),
Expand Down

0 comments on commit 2533be9

Please sign in to comment.