Skip to content
This repository has been archived by the owner on Nov 29, 2024. It is now read-only.

Commit

Permalink
Version: Bump to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jwijenbergh committed Feb 1, 2023
1 parent c03d17d commit 5e408e1
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
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-0.2.0
git clone . dist/libeduvpn-common-0.3.0
go mod vendor
cp -r vendor dist/libeduvpn-common-0.2.0/vendor
cp -r vendor dist/libeduvpn-common-0.3.0/vendor
tar -zcvf ~/rpmbuild/SOURCES/libeduvpn-common.tar.gz -C dist .

# Cleanup
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-0.2.0-py3-none-linux_x86_64.whl
pip install wrappers/python/dist/eduvpncommon-0.3.0-py3-none-linux_x86_64.whl
```
Note that the name of your wheel changes on the platform and version.
4 changes: 2 additions & 2 deletions eduvpncommon.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
%global sum eduVPN common Go library

Name: lib%{libname}
Version: 0.2.0
Version: 0.3.0
Release: 0.1%{?dist}
Summary: %{sum}

Expand Down Expand Up @@ -41,7 +41,7 @@ popd

%package -n python3-%{libname}
BuildArch: noarch
Requires: %{name} >= 0.2.0, %{name} < 0.3.0
Requires: %{name} >= 0.3.0, %{name} < 0.4.0
Summary: Python3 eduvpncommon wrapper

%description -n python3-%{libname}
Expand Down
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 = 0.2.0
VERSION = 0.3.0

# Library name without prefixes/suffixes
LIB_NAME ?= eduvpn_common
Expand Down
4 changes: 2 additions & 2 deletions wrappers/python/docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
import sphinx_rtd_theme

project = 'python-eduvpn-common'
copyright = '2022, Jeroen Wijenbergh'
copyright = '2023, Jeroen Wijenbergh'
author = 'Jeroen Wijenbergh'
release = '0.2.0'
release = '0.3.0'

# -- 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__ = "0.2.0"
__version__ = "0.3.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__ = "0.2.0"
__version__ = "0.3.0"

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 5e408e1

Please sign in to comment.