Skip to content

Commit

Permalink
Bump version to 2.1.1 for release (#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasschwab authored Jun 22, 2024
1 parent 4eac1c1 commit cd3ba8a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arxiv/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ def __try_parse_feed(

logger.info("Requesting page (first: %r, try: %d): %s", first_page, try_index, url)

resp = self._session.get(url, headers={"user-agent": "arxiv.py/2.1.0"})
resp = self._session.get(url, headers={"user-agent": "arxiv.py/2.1.1"})
self._last_request_dt = datetime.now()
if resp.status_code != requests.codes.OK:
raise HTTPError(url, try_index, resp.status_code)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup

version = "2.1.0"
version = "2.1.1"

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

0 comments on commit cd3ba8a

Please sign in to comment.