Skip to content

Commit

Permalink
Bump version to 2.1.2 for release (#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasschwab authored Jun 23, 2024
1 parent 7edcd0e commit c67e92e
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.1"})
resp = self._session.get(url, headers={"user-agent": "arxiv.py/2.1.2"})
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.1"
version = "2.1.2"

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

0 comments on commit c67e92e

Please sign in to comment.