Skip to content

Commit

Permalink
Bumps version to 0.8.0, Fixes #27, Resolves #31, Resolves #34
Browse files Browse the repository at this point in the history
refactor: Updates libraries to the latest compatible versions
  • Loading branch information
mitchos committed Sep 7, 2021
1 parent 09387c1 commit a4e12d4
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 14 deletions.
6 changes: 3 additions & 3 deletions docs-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
sphinx==4.1.2
restfly==1.4.0
python-box==5.3.0
furo
restfly==1.4.1
python-box==5.4.1
furo==2021.8.31
4 changes: 2 additions & 2 deletions docsrc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
html_title = ''

# The short X.Y version
version = '0.7'
version = '0.8'
# The full version, including alpha/beta/rc tags
release = '0.7.1'
release = '0.8.0'

# -- General configuration ---------------------------------------------------

Expand Down
11 changes: 6 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyzscaler"
version = "0.7.1"
version = "0.8.0"
description = "A python SDK for the Zscaler API."
authors = ["Mitch Kelly <me@mkelly.dev>"]
license = "MIT"
Expand Down Expand Up @@ -29,14 +29,15 @@ include = [

[tool.poetry.dependencies]
python = "^3.6"
restfly = "^1.4.0"
python-box = "^5.3.0"
restfly = "^1.4.1"
python-box = "^5.4.1"

[tool.poetry.dev-dependencies]
restfly = "^1.4.0"
python-box = "^5.3.0"
restfly = "^1.4.1"
python-box = "^5.4.1"
sphinx = "4.1.2"
pytest = "^6.2.4"
furo = "2021.8.31"

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down
2 changes: 1 addition & 1 deletion pyzscaler/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = '0.7.1'
version = '0.8.0'
3 changes: 2 additions & 1 deletion pyzscaler/zpa/app_segments.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ def add_segment(
udp_ports: str = None,
**kwargs,
):
"""Create an application segment.
"""
Create an application segment.
Args:
segment_group_id (str):
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
restfly==1.4.0
python-box==5.3.0
restfly==1.4.1
python-box==5.4.1

0 comments on commit a4e12d4

Please sign in to comment.