summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2023-03-01 08:54:44 +0100
committerjwijenbergh <jeroenwijenbergh@protonmail.com>2023-03-01 08:54:44 +0100
commit6da4645081e94fe197c62f92d7af37b2428d6e65 (patch)
treefb8dbc94c997798a435fda014e82e1bb58591608
parentafc37f438fd0116b1dc7615b75e2db8472f6352b (diff)
Version: Downgrade to 0.99.0
-rw-r--r--CHANGES.md2
-rw-r--r--Makefile4
-rw-r--r--docs/src/gettingstarted/building/example.md2
-rw-r--r--exports/common.mk2
-rw-r--r--internal/http/http.go2
-rw-r--r--wrappers/python/docs/source/conf.py2
-rw-r--r--wrappers/python/eduvpn_common/__init__.py2
-rwxr-xr-xwrappers/python/setup.py2
8 files changed, 9 insertions, 9 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 56c7f75..750d846 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,4 +1,4 @@
-# 1.0.0
+# 0.99.0 (2023-03-01)
* Discovery:
- Bundle on release using embed
- Cache in the JSON
diff --git a/Makefile b/Makefile
index 1a22cf5..73754ce 100644
--- a/Makefile
+++ b/Makefile
@@ -35,9 +35,9 @@ srpm:
rm -rf dist/*
# Archive code with vendored dependencies
- git clone . dist/libeduvpn-common-1.0.0
+ git clone . dist/libeduvpn-common-0.99.0
go mod vendor
- cp -r vendor dist/libeduvpn-common-1.0.0/vendor
+ cp -r vendor dist/libeduvpn-common-0.99.0/vendor
tar -zcvf ~/rpmbuild/SOURCES/libeduvpn-common.tar.gz -C dist .
# Cleanup
diff --git a/docs/src/gettingstarted/building/example.md b/docs/src/gettingstarted/building/example.md
index 57405f4..92171b8 100644
--- a/docs/src/gettingstarted/building/example.md
+++ b/docs/src/gettingstarted/building/example.md
@@ -23,6 +23,6 @@ make -C wrappers/python
5. Install the wheel using pip
```bash
-pip install wrappers/python/dist/eduvpncommon-1.0.0-py3-none-linux_x86_64.whl
+pip install wrappers/python/dist/eduvpncommon-0.99.0-py3-none-linux_x86_64.whl
```
Note that the name of your wheel changes on the platform and version.
diff --git a/exports/common.mk b/exports/common.mk
index 02c21c2..00e1c63 100644
--- a/exports/common.mk
+++ b/exports/common.mk
@@ -19,7 +19,7 @@ LIB_SUFFIX ?= .so
endif
# Current version
-VERSION = 1.0.0
+VERSION = 0.99.0
# Library name without prefixes/suffixes
LIB_NAME ?= eduvpn_common
diff --git a/internal/http/http.go b/internal/http/http.go
index c31ed5e..a539671 100644
--- a/internal/http/http.go
+++ b/internal/http/http.go
@@ -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.0.0")
+ UserAgent = fmt.Sprintf("%s/%s %s", client, version, "eduvpn-common/0.99.0")
}
diff --git a/wrappers/python/docs/source/conf.py b/wrappers/python/docs/source/conf.py
index 5a8f75e..1833c8f 100644
--- a/wrappers/python/docs/source/conf.py
+++ b/wrappers/python/docs/source/conf.py
@@ -10,7 +10,7 @@ import sphinx_rtd_theme
project = 'python-eduvpn-common'
copyright = '2023, Jeroen Wijenbergh'
author = 'Jeroen Wijenbergh'
-release = '1.0.0'
+release = '0.99.0'
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
diff --git a/wrappers/python/eduvpn_common/__init__.py b/wrappers/python/eduvpn_common/__init__.py
index 5becc17..c0f51b7 100644
--- a/wrappers/python/eduvpn_common/__init__.py
+++ b/wrappers/python/eduvpn_common/__init__.py
@@ -1 +1 @@
-__version__ = "1.0.0"
+__version__ = "0.99.0"
diff --git a/wrappers/python/setup.py b/wrappers/python/setup.py
index a994fd3..792ed84 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.0.0"
+__version__ = "0.99.0"
def getlibpath(plat_name: str) -> typing.Union[str, None]:
"""Get library path for plat_name relative to exports/lib/ folder."""