Skip to content

Commit

Permalink
Version: Update to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jwijenbergh committed Dec 8, 2023
1 parent 11ffa7e commit 0ae68d6
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion internal/version/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package version

const Version = "1.1.99.0"
const Version = "1.2.0"
2 changes: 1 addition & 1 deletion make_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion wrappers/python/eduvpn_common/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.1.99.0"
__version__ = "1.2.0"
2 changes: 1 addition & 1 deletion wrappers/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]:
Expand Down

0 comments on commit 0ae68d6

Please sign in to comment.