diff --git a/AUTHORS.rst b/AUTHORS.rst index 1808058..503ca68 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -3,7 +3,8 @@ Authors & Contributors * Mikhail Korobov ; * Dan Blanchard; -* Jakub Wilk. +* Jakub Wilk; +* Alex Moiseenko. This module uses `dawgdic`_ C++ library by Susumu Yata & contributors. diff --git a/CHANGES.rst b/CHANGES.rst index 053fd56..b2e38ad 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,13 @@ Changes ======= +0.7.1 (2013-05-25) +------------------ + +- Extension is rebuilt with Cython 0.19.1; +- fixed segfault that happened on lookup from incorrectly loaded DAWG + (thanks Alex Moiseenko). + 0.7 (2013-04-05) ---------------- diff --git a/LICENSE b/LICENSE index d71198e..e6aad65 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) Mikhail Korobov, 2012 +Copyright (c) Mikhail Korobov, 2012-2013 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/setup.py b/setup.py index 1fcb65b..4af03f1 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="DAWG", - version="0.7", + version="0.7.1", description="Fast and memory efficient DAWG for Python", long_description = open('README.rst').read() +'\n\n' + open('CHANGES.rst').read(), author='Mikhail Korobov',