Skip to content

Commit 39b13ca

Browse files
authored
Bump version to 2.1.0 (#146)
1 parent 7f60b51 commit 39b13ca

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

arxiv/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -671,7 +671,7 @@ def __try_parse_feed(
671671
"Requesting page (first: %r, try: %d): %s", first_page, try_index, url
672672
)
673673

674-
resp = self._session.get(url, headers={"user-agent": "arxiv.py/2.0.0"})
674+
resp = self._session.get(url, headers={"user-agent": "arxiv.py/2.1.0"})
675675
self._last_request_dt = datetime.now()
676676
if resp.status_code != requests.codes.OK:
677677
raise HTTPError(url, try_index, resp.status_code)

arxiv/arxiv.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
"""
22
This submodule is only an alias included for backwards compatibility. Its use is
3-
deprecated as of 2.0.0.
3+
deprecated as of 2.1.0.
44
55
Use `import arxiv`.
66
"""
77
from .__init__ import * # noqa: F403
88
import warnings
99

10-
warnings.warn("**Deprecated** after 2.0.0; use 'import arxiv' instead.")
10+
warnings.warn("**Deprecated** after 2.1.0; use 'import arxiv' instead.")

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup
22

3-
version = "2.0.0"
3+
version = "2.1.0"
44

55
with open("README.md", "r") as fh:
66
long_description = fh.read()

0 commit comments

Comments
 (0)