From 8b39ea897ba75a314f01da649524cf4f0539f1ec Mon Sep 17 00:00:00 2001 From: Andre Burgaud Date: Wed, 23 Oct 2024 22:18:52 -0500 Subject: [PATCH] bumped version to 0.11 --- requirements.txt | 6 ++++++ robots/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 71f90ed..36f6d7e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,10 @@ attrs==24.2.0 +backports.tarfile==1.2.0 +importlib-metadata==8.0.0 +importlib-resources==6.4.0 +jaraco.collections==5.1.0 pip-chill==1.0.3 +platformdirs==4.2.2 pytest==8.3.3 toml==0.10.2 +tomli==2.0.1 diff --git a/robots/__init__.py b/robots/__init__.py index 316a896..ac25527 100644 --- a/robots/__init__.py +++ b/robots/__init__.py @@ -6,6 +6,6 @@ from robots.parser import RequestRate from robots.robotparser import RobotFileParser -__version__ = "0.10.0" +__version__ = "0.11.0" __all__ = ["RobotsParser", "RobotFileParser"] diff --git a/setup.py b/setup.py index da12fb6..5fbef7e 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="robotspy", - version="0.10.0", + version="0.11.0", description="Robots Exclusion Protocol File Parser", long_description=README, long_description_content_type="text/markdown",