-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/develop'
- Loading branch information
Showing
5 changed files
with
13 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
__version__ = "0.3.2" | ||
__version__ = "0.3.3" | ||
__description__ = "Wrapper script for OpenConnect supporting Azure AD (SAMLv2) authentication to Cisco SSL-VPNs" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "openconnect-sso" | ||
version = "0.3.2" | ||
version = "0.3.3" | ||
description = "Wrapper script for OpenConnect supporting Azure AD (SAMLv2) authentication to Cisco SSL-VPNs" | ||
authors = ["László Vaskó <[email protected]>"] | ||
readme = "README.md" | ||
|
6 changes: 3 additions & 3 deletions
6
releasenotes/notes/attrs-version-relaxed-a1a4c43f88c7ca98.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
--- | ||
fixes: | ||
- | | ||
Relaxed version requirements of `attrs` package. As `attrs` is also used | ||
as a transitive dependency being too restrictive of its version can break | ||
dependency resolution during installation. | ||
Relaxed version requirements of ``attrs`` package. As ``attrs`` is also | ||
used as a transitive dependency being too restrictive of its version can | ||
break dependency resolution during installation. |
6 changes: 6 additions & 0 deletions
6
releasenotes/notes/python-3.6_compatibility-3c6eeb53de22ab20.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
fixes: | ||
- | | ||
Python 3.6 compatibilty has been fixedhowever The problem was caused by the | ||
usage of ``asyncio.create_task(coro)``. Its usage was replaced with | ||
``asyncio.ensure_future(core)``. |