summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.md9
-rw-r--r--internal/version/version.go2
-rwxr-xr-xmake_release.sh2
-rw-r--r--wrappers/python/eduvpn_common/__init__.py2
-rwxr-xr-xwrappers/python/setup.py2
5 files changed, 13 insertions, 4 deletions
diff --git a/CHANGES.md b/CHANGES.md
index d9e9407..12f6a01 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 e6bd440..15f2623 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 5e56e5f..598ee01 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 58004aa..c68196d 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 f2cecf8..0d23379 100755
--- a/wrappers/python/setup.py
+++ b/wrappers/python/setup.py
@@ -10,7 +10,7 @@ from setuptools import setup
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]: