Skip to content

Commit 224888f

Browse files
Upgrade dependencies
1 parent 0ce41e4 commit 224888f

File tree

5 files changed

+14
-9
lines changed

5 files changed

+14
-9
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ jobs:
2121
python -m pip install --upgrade pip
2222
pip install -r requirements.txt
2323
- name: Unit Tests
24-
run: python -m unittest discover -s tests
24+
run: python -m unittest discover -s tests

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [3.1.0] - 2021-10-26
11+
### Changed
12+
- Dependencies update
13+
1014
## [3.0.0] - 2021-04-09
1115
### Changed
1216
- Drop Python 2 support.
@@ -32,7 +36,8 @@ https://github.com/ipregistry/ipregistry-python#caching
3236
## [1.0.0] - 2019-07-28
3337
- First public release.
3438

35-
[Unreleased]: https://github.com/ipregistry/ipregistry-javascript/compare/3.0.0...HEAD
39+
[Unreleased]: https://github.com/ipregistry/ipregistry-javascript/compare/3.1.0...HEAD
40+
[3.1.0]: https://github.com/ipregistry/ipregistry-javascript/releases/tag/3.0.0...3.1.0
3641
[3.0.0]: https://github.com/ipregistry/ipregistry-javascript/releases/tag/2.0.1...3.0.0
3742
[2.0.1]: https://github.com/ipregistry/ipregistry-javascript/releases/tag/2.0.0...2.0.1
3843
[2.0.0]: https://github.com/ipregistry/ipregistry-javascript/releases/tag/1.1.0...2.0.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
[![PyPI](https://img.shields.io/pypi/v/ipregistry)](https://pypi.org/project/ipregistry/)
77

88
This is the official Python client library for the [Ipregistry](https://ipregistry.co) IP geolocation and threat data API,
9-
allowing you to lookup your own IP address or specified ones. Responses return up to 65 data points including
10-
location, currency, timezone, threat information, and more.
9+
allowing you to lookup your own IP address or specified ones. Responses return multiple data points including carrier,
10+
company, currency, location, timezone, threat information, and more.
1111

1212
Starting version 3.0.0 of the library, support for Python 2 has been dropped and the library requires Python 3.6+.
1313

ipregistry/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "ipregistry"
22

3-
__version__ = "3.0.0"
3+
__version__ = "3.1.0"
44

55
from .cache import *
66
from .core import *

requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
cachetools==4.2.1
2-
certifi==2021.5.30
1+
cachetools==4.2.4
2+
certifi==2021.10.8
33
chardet==3.0.4
4-
idna==2.10
4+
idna==3.3
55
requests==2.26.0
66
six==1.15.0
7-
urllib3==1.26.4
7+
urllib3==1.26.7

0 commit comments

Comments
 (0)