summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2022-12-20 16:22:27 +0100
committerjwijenbergh <jeroenwijenbergh@protonmail.com>2022-12-21 18:28:52 +0100
commit39b017a21637dbd383faec2360663eb200329f43 (patch)
tree0e87ffafe1c4149e3ef420e273c9443b1ae92732
parent845c67476979bd031890ef430f24a0acbd9f2c7c (diff)
Version: Bump to 0.2.0
-rw-r--r--Makefile4
-rw-r--r--docs/src/gettingstarted/building/example.md2
-rw-r--r--eduvpncommon.spec4
-rw-r--r--exports/common.mk2
-rw-r--r--wrappers/python/docs/source/conf.py2
-rw-r--r--wrappers/python/eduvpn_common/__init__.py2
-rwxr-xr-xwrappers/python/setup.py2
7 files changed, 9 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index 1da08f0..6f891e8 100644
--- a/Makefile
+++ b/Makefile
@@ -35,9 +35,9 @@ srpm:
rm -rf dist/*
# Archive code with vendored dependencies
- git clone . dist/libeduvpn-common-0.1.0
+ git clone . dist/libeduvpn-common-0.2.0
go mod vendor
- cp -r vendor dist/libeduvpn-common-0.1.0/vendor
+ cp -r vendor dist/libeduvpn-common-0.2.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 bdf027e..70999f8 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-0.1.0-py3-none-linux_x86_64.whl
+pip install wrappers/python/dist/eduvpncommon-0.2.0-py3-none-linux_x86_64.whl
```
Note that the name of your wheel changes on the platform and version.
diff --git a/eduvpncommon.spec b/eduvpncommon.spec
index 401a475..d973edc 100644
--- a/eduvpncommon.spec
+++ b/eduvpncommon.spec
@@ -3,7 +3,7 @@
%global sum eduVPN common Go library
Name: lib%{libname}
-Version: 0.1.0
+Version: 0.2.0
Release: 1%{?dist}
Summary: %{sum}
@@ -41,7 +41,7 @@ popd
%package -n python3-%{libname}
BuildArch: noarch
-Requires: %{name} >= 0.1.0, %{name} < 0.2.0
+Requires: %{name} >= 0.2.0, %{name} < 0.3.0
Summary: Python3 eduvpncommon wrapper
%description -n python3-%{libname}
diff --git a/exports/common.mk b/exports/common.mk
index c5386ae..4817d76 100644
--- a/exports/common.mk
+++ b/exports/common.mk
@@ -19,7 +19,7 @@ LIB_SUFFIX ?= .so
endif
# Current version
-VERSION = 0.1.0
+VERSION = 0.2.0
# Library name without prefixes/suffixes
LIB_NAME ?= eduvpn_common
diff --git a/wrappers/python/docs/source/conf.py b/wrappers/python/docs/source/conf.py
index d7b8c57..e4e82e3 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 = '2022, Jeroen Wijenbergh'
author = 'Jeroen Wijenbergh'
-release = '0.1.0'
+release = '0.2.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 3dc1f76..d3ec452 100644
--- a/wrappers/python/eduvpn_common/__init__.py
+++ b/wrappers/python/eduvpn_common/__init__.py
@@ -1 +1 @@
-__version__ = "0.1.0"
+__version__ = "0.2.0"
diff --git a/wrappers/python/setup.py b/wrappers/python/setup.py
index 728bfaa..9be8724 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__ = "0.1.0"
+__version__ = "0.2.0"
def getlibpath(plat_name: str) -> typing.Union[str, None]:
"""Get library path for plat_name relative to exports/lib/ folder."""