diff --git a/README.md b/README.md index 0b7fba7..ecd0a8e 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.2.0.zip +pip install https://github.com/soltanoff/PySwaggerClient/archive/v2.3.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 f4500e7..727b808 100644 --- a/pyswaggerclient/pyswagger/__init__.py +++ b/pyswaggerclient/pyswagger/__init__.py @@ -1,4 +1,4 @@ -__version__ = '2.2.0' +__version__ = '2.3.0' from .getter import Getter from .core import App, Security diff --git a/requirements.txt b/requirements.txt index ab9878f..c81e1c9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ -pyaml==24.9.0 +pyaml==25.1.0 requests==2.32.3 validate_email==1.3 \ No newline at end of file diff --git a/setup.py b/setup.py index 189bc82..00a193e 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name='pyswaggerclient', - version='2.2.0', + version='2.3.0', packages=find_packages( exclude=('*.egg-info', 'build', 'dist', 'docs', 'deploy',), ),