Skip to content

Commit

Permalink
Release 2.0.0
Browse files Browse the repository at this point in the history
* Update README and setup.py with new release information.
* Update trove classifiers in setup.py, while we're at it.
  • Loading branch information
ChrisAichinger committed Nov 23, 2018
1 parent 1f13974 commit 9c4cf5f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
9 changes: 9 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,15 @@ opportunity :-)
Release notes
-------------

* **2.0.0**, released on 2018-11-23

- Output validation for ``dump()`` and ``dumps()``: raise an exception when
dumping data that can not be read by the C libconfig implementation.
*This change may raise exceptions on code that worked with <2.0.0!*
- Add ``LibconfList``, ``LibconfArray``, ``LibconfInt64`` classes for
more fine-grained control of the ``dump()``/``dumps()`` output.
- Fix ``deepcopy()`` of ``AttrDict`` classes (thanks AnandTella).

* **1.0.1**, released on 2017-01-06

- Drastically improve performance when reading larger files
Expand Down
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@

setup(
name='libconf',
version='1.0.1',
version='2.0.0',
description="A pure-Python libconfig reader/writer with permissive license",
long_description=open('README.rst').read(),
author="Christian Aichinger",
author_email="Greek0@gmx.net",
url='https://github.com/Grk0/python-libconf',
download_url='https://github.com/Grk0/python-libconf/tarball/1.0.1',
download_url='https://github.com/Grk0/python-libconf/tarball/2.0.0',
license="MIT",
py_modules=['libconf'],
keywords='libconfig configuration parser library',
classifiers=[
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
Expand All @@ -23,5 +23,7 @@
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)

0 comments on commit 9c4cf5f

Please sign in to comment.