Skip to content

Commit 47dfa02

Browse files
author
László Vaskó
committed
Merge remote-tracking branch 'origin/develop'
2 parents 009e8e8 + 19f6319 commit 47dfa02

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

openconnect_sso/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.2.1"
1+
__version__ = "0.3.0"
22
__description__ = (
33
"Wrapper script for OpenConnect supporting Azure AD (SAMLv2) authentication"
44
)

openconnect_sso/app.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,6 @@ async def run_openconnect(auth_info, host, args):
118118
proc = await asyncio.create_subprocess_exec(
119119
"sudo",
120120
"openconnect",
121-
"--csd-user",
122-
"nobody",
123121
"--cookie-on-stdin",
124122
"--servercert",
125123
auth_info.server_cert_hash,

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "openconnect-sso"
3-
version = "0.2.1"
3+
version = "0.3.0"
44
description = "Wrapper script for OpenConnect supporting Azure AD (SAMLv2) authentication"
55
authors = ["László Vaskó <[email protected]>"]
66
readme = "README.md"

tests/test_openconnect_sso.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33

44
def test_version():
5-
assert __version__ == '0.2.1'
5+
assert __version__ == '0.3.0'

0 commit comments

Comments
 (0)