diff --git a/CHANGES.md b/CHANGES.md index d9e9407c..12f6a013 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,12 @@ +# 1.2.0 (2023-12-08) +* OAuth: + - Disable all ISS checks +* API: + - Only validate that the scheme is HTTPS in well-known. Hostname checking should be handled by ISS properly in the future +* Renew: + - Base showing renew button time on 30 minutes since authorization start time correctly + - Add docker files for building pip packages + # 1.1.99.0 (1.2 pre-release) (2023-10-25) * Version: - Make it easier to update diff --git a/internal/version/version.go b/internal/version/version.go index e6bd4407..15f26234 100644 --- a/internal/version/version.go +++ b/internal/version/version.go @@ -1,3 +1,3 @@ package version -const Version = "1.1.99.0" +const Version = "1.2.0" diff --git a/make_release.sh b/make_release.sh index 5e56e5f6..598ee019 100755 --- a/make_release.sh +++ b/make_release.sh @@ -10,7 +10,7 @@ set -e # change these to your liking BRANCH=v1 -IS_PRERELEASE=true +IS_PRERELEASE=false REPO="eduvpn/eduvpn-common" # make a fresh clone diff --git a/wrappers/python/eduvpn_common/__init__.py b/wrappers/python/eduvpn_common/__init__.py index 58004aa8..c68196d1 100644 --- a/wrappers/python/eduvpn_common/__init__.py +++ b/wrappers/python/eduvpn_common/__init__.py @@ -1 +1 @@ -__version__ = "1.1.99.0" +__version__ = "1.2.0" diff --git a/wrappers/python/setup.py b/wrappers/python/setup.py index f2cecf80..0d23379b 100755 --- a/wrappers/python/setup.py +++ b/wrappers/python/setup.py @@ -10,7 +10,7 @@ from wheel.bdist_wheel import bdist_wheel as _bdist_wheel _libname = "eduvpn_common" -__version__ = "1.1.99.0" +__version__ = "1.2.0" def getlibpath(plat_name: str) -> typing.Union[str, None]: