diff --git a/README.md b/README.md index c8cc2f5..0b7fba7 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ documentation, and seamless programmatic access. ```bash # stable -pip install https://github.com/soltanoff/PySwaggerClient/archive/v2.1.0.zip +pip install https://github.com/soltanoff/PySwaggerClient/archive/v2.2.0.zip # optional for openapi-3 version handling npm install -g api-spec-converter ``` diff --git a/pyswaggerclient/pyswagger/__init__.py b/pyswaggerclient/pyswagger/__init__.py index 68d6236..f4500e7 100644 --- a/pyswaggerclient/pyswagger/__init__.py +++ b/pyswaggerclient/pyswagger/__init__.py @@ -1,4 +1,4 @@ -__version__ = '2.1.0' +__version__ = '2.2.0' from .getter import Getter from .core import App, Security diff --git a/requirements-dev.txt b/requirements-dev.txt index 645d27f..dce1e87 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,6 +1,6 @@ -r requirements.txt -flake8==7.1.1 +flake8==7.1.2 flake8-bandit==4.1.1 -pylint==3.3.1 -safety==3.2.11 \ No newline at end of file +pylint==3.3.4 +safety==3.3.0 \ No newline at end of file diff --git a/setup.py b/setup.py index 9abe41d..189bc82 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name='pyswaggerclient', - version='2.1.0', + version='2.2.0', packages=find_packages( exclude=('*.egg-info', 'build', 'dist', 'docs', 'deploy',), ),