Skip to content

Commit

Permalink
Merge pull request #30 from secynic/dev
Browse files Browse the repository at this point in the history
v0.8.0
  • Loading branch information
secynic committed Feb 18, 2014
2 parents cfb2d25 + 99ba8de commit 3a59ae0
Show file tree
Hide file tree
Showing 5 changed files with 236 additions and 141 deletions.
11 changes: 11 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
Changelog
=========

0.8.0 (2014-02-18)
------------------

- Added ASNRegistryError to handle unknown ASN registry return values.
- Added ASN registry lookup third tier fallback to ARIN.
- Fixed variable naming to avoid shadows built-in confusion.
- Fixed some type errors: Expected type 'str', got 'dict[str, dict]' instead.
- Fixed RIPE RWS links, since they changed their API.
- Temporarily removed RIPE RWS functionality until they fix their API.
- Removed RADB fallback, since RIPE removed it.

0.7.0 (2014-01-14)
------------------

Expand Down
8 changes: 7 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -152,4 +152,10 @@ IPWhois.lookup_rws() should be faster than IPWhois.lookup(), but may not be as
reliable. AFRINIC does not have a Whois-RWS service yet. We have to rely on the
Ripe RWS service, which does not contain all of the data we need. The LACNIC
RWS service is supported, but is in beta v2. This may result in availability
or performance issues.
or performance issues.

*****NOTE*****

RIPE RWS functionality is currently disabled until their API is fixed:

https://github.com/RIPE-NCC/whois/issues/114
4 changes: 2 additions & 2 deletions 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.7.0'
__version__ = '0.8.0'

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

0 comments on commit 3a59ae0

Please sign in to comment.