diff --git a/ChangeLog b/ChangeLog new file mode 100644 index 0000000..0d27222 --- /dev/null +++ b/ChangeLog @@ -0,0 +1,30 @@ +Changelog +========= + +0.1.2 (2014-02-27) +------------------ + +- Print error and recover if VOEvent message has no ivorn. [Leo Singer] + +- Recover from malformed XML packets. [Leo Singer] + + If a malformed XML packet is received, log its base64-encoded content + for debugging purposes and then reconnect. + +- Add rudimentary server. [Leo Singer] + +- Fix spelling error. [Leo Singer] + +0.1.1 (2014-02-12) +------------------ + +- Fix Python 2.6 compatibility. [Leo Singer] + +- Prefer lxml.etree over xml.etree. [Leo Singer] + + It's faster. + +0.1 (2014-02-07) +---------------- + +- First release. [Leo Singer] diff --git a/MANIFEST.in b/MANIFEST.in index 2301d36..39f1f00 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,3 @@ include COPYING +include ChangeLog include README.md diff --git a/setup.py b/setup.py index 058b7cc..6f9b000 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ setup( name='pygcn', - version='0.1.1', + version='0.1.2', author='Leo Singer', author_email='leo.singer@ligo.org', description=gcn.__doc__.splitlines()[1],