Skip to content

Commit

Permalink
Version: Update to 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jwijenbergh committed Aug 29, 2023
1 parent 88bcf43 commit 1ee57ae
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.1.1 (2023-08-29)
* Server:
- Update OAuth endpoints when endpoints are refreshed from .well-known/vpn-user-portal

# 1.1.0 (2023-04-18)
* Client:
- Implement a toker updater callback to notify client of any token updates
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ srpm:
rm -rf dist/*

# Archive code with vendored dependencies
git clone . dist/libeduvpn-common-1.1.0
git clone . dist/libeduvpn-common-1.1.1
go mod vendor
cp -r vendor dist/libeduvpn-common-1.1.0/vendor
cp -r vendor dist/libeduvpn-common-1.1.1/vendor
tar -zcvf ~/rpmbuild/SOURCES/libeduvpn-common.tar.gz -C dist .

# Cleanup
Expand Down
2 changes: 1 addition & 1 deletion cmd/cli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ func printConfig(url string, srvType ServerTypes) {

err := c.Register(
"org.eduvpn.app.linux",
"1.1.0-cli",
"1.1.1-cli",
"configs",
"en",
func(old client.FSMStateID, new client.FSMStateID, data interface{}) bool {
Expand Down
2 changes: 1 addition & 1 deletion docs/src/gettingstarted/building/example.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ make -C wrappers/python

5. Install the wheel using pip
```bash
pip install wrappers/python/dist/eduvpncommon-1.1.0-py3-none-linux_x86_64.whl
pip install wrappers/python/dist/eduvpncommon-1.1.1-py3-none-linux_x86_64.whl
```
Note that the name of your wheel changes on the platform and version.
2 changes: 1 addition & 1 deletion exports/common.mk
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ LIB_SUFFIX ?= .so
endif

# Current version
VERSION = 1.1.0
VERSION = 1.1.1

# Library name without prefixes/suffixes
LIB_NAME ?= eduvpn_common
Expand Down
2 changes: 1 addition & 1 deletion internal/http/http.go
Original file line number Diff line number Diff line change
Expand Up @@ -248,5 +248,5 @@ func (e *StatusError) Error() string {

// RegisterAgent registers the user agent for client and version
func RegisterAgent(client string, version string) {
UserAgent = fmt.Sprintf("%s/%s %s", client, version, "eduvpn-common/1.1.0")
UserAgent = fmt.Sprintf("%s/%s %s", client, version, "eduvpn-common/1.1.1")
}
2 changes: 1 addition & 1 deletion wrappers/python/docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
project = 'python-eduvpn-common'
copyright = '2023, Jeroen Wijenbergh'
author = 'Jeroen Wijenbergh'
release = '1.1.0'
release = '1.1.1'

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
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.0"
__version__ = "1.1.1"
2 changes: 1 addition & 1 deletion wrappers/python/example/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def do_secure_internet(edu: eduvpn.EduVPN) -> Optional[Config]:

# The main entry point
if __name__ == "__main__":
_eduvpn = eduvpn.EduVPN("org.eduvpn.app.linux", "1.1.0-cli-py", "configs", "en")
_eduvpn = eduvpn.EduVPN("org.eduvpn.app.linux", "1.1.1-cli-py", "configs", "en")
setup_callbacks(_eduvpn)

# Register with the eduVPN-common library
Expand Down
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.0"
__version__ = "1.1.1"

def getlibpath(plat_name: str) -> typing.Union[str, None]:
"""Get library path for plat_name relative to exports/lib/ folder."""
Expand Down

0 comments on commit 1ee57ae

Please sign in to comment.