diff --git a/CHANGELOG.md b/CHANGELOG.md index d0bb717..26d5b75 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Development +## 0.1.1 (2019-12-18) + +Changed setup.py + ## 0.1.0 (2019-12-16) Initial release of the prototype diff --git a/LICENSE.rst b/LICENSE.rst index 528e78a..38a2786 100644 --- a/LICENSE.rst +++ b/LICENSE.rst @@ -1,6 +1,6 @@ The MIT License -Copyright (c) 2019, Henning Kage +Copyright (c) 2019, Rheinwerk Verlag GmbH Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. \ No newline at end of file +THE SOFTWARE. diff --git a/README.rst b/README.rst index 9918fd5..3f27500 100644 --- a/README.rst +++ b/README.rst @@ -249,6 +249,8 @@ the ``BROWSER`` make variable, e.g.:: TODOs ----- * Add tests +* Add exceptions for certain field values +* Make the providers more pluggable (e.g. as own classes with a unqiue character id) * Add option to create a database dump * Add ``choice`` provider to randomly choice from a list of values diff --git a/pganonymizer/version.py b/pganonymizer/version.py index 438d9cd..d5cdd3d 100644 --- a/pganonymizer/version.py +++ b/pganonymizer/version.py @@ -1,3 +1,3 @@ # -*- coding: utf-8 -*- -__version__ = '0.1.0' +__version__ = '0.1.1' diff --git a/setup.py b/setup.py index 2d4e754..4a7471d 100755 --- a/setup.py +++ b/setup.py @@ -65,10 +65,10 @@ def run(self): description='Commandline tool to anonymize PostgreSQL databases', long_description=read('README.rst'), author='Henning Kage', - author_email='henning.kage@gmail.com', - maintainer='Henning Kage', - maintainer_email='henning.kage@gmail.com', - url='https://github.com/hkage/postgresql-anonymizer', + author_email='henning.kage@rheinwerk-verlag.de', + maintainer='Rheinwerk Verlag GmbH Webteam', + maintainer_email='webteam@rheinwerk-verlag.de', + url='https://github.com/rheinwerk-verlag/postgresql-anonymizer', license='Proprietary', classifiers=[ 'Development Status :: 2 - Pre-Alpha',