Skip to content

Commit

Permalink
v0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
secynic committed Dec 4, 2013
1 parent fe370b4 commit bd58df3
Show file tree
Hide file tree
Showing 6 changed files with 775 additions and 532 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,5 @@ nosetests.xml
.project
.pydevproject

MANIFEST
MANIFEST
.idea
15 changes: 15 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
Changelog
=========

0.5.1 (2013-12-03)
------------------

- Moved regex string literal declarations to NIC_WHOIS dict.
- Moved RWS parsing to own private functions.
- Moved base_net dict to global BASE_NET.
- More granular exception handling in lookup functions.
- Fixed email parsing for ARIN and RIPE RWS.
- Changed some 'if key in dict' statements to try/except for slight performance
increase in lookup functions.
- Removed generic exception handling (returned blank dict) on get_countries().
- More PEP 8 reformatting.
- Minor docstring modifications.
- Added some unit tests to test_lookup() and test_lookup_rws().

0.5.0 (2013-11-20)
------------------

Expand Down
2 changes: 1 addition & 1 deletion ipwhois/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.

__version__ = '0.5.0'
__version__ = '0.5.1'

from .ipwhois import (IPWhois, IPDefinedError, ASNLookupError,
WhoisLookupError, HostLookupError)
Loading

0 comments on commit bd58df3

Please sign in to comment.