From c2f7055ceca6ee327005fa5162969c3602551bf8 Mon Sep 17 00:00:00 2001 From: Steffen Schneider Date: Wed, 13 Sep 2023 13:42:39 +0200 Subject: [PATCH] Bump version to 0.3.0 --- Makefile | 2 +- PKGBUILD | 2 +- cebra/__init__.py | 2 +- reinstall.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 1fbb7a94..257401ba 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ build: dist archlinux: mkdir -p dist/arch cp PKGBUILD dist/arch - cp dist/cebra-0.3.0rc1.tar.gz dist/arch + cp dist/cebra-0.3.0.tar.gz dist/arch (cd dist/arch; makepkg --skipchecksums -f) # NOTE(stes): Ensure that no old tempfiles are present. Ideally, move this into diff --git a/PKGBUILD b/PKGBUILD index 8bf9a603..b4969a38 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Steffen Schneider pkgname=python-cebra _pkgname=cebra -pkgver=0.3.0rc1 +pkgver=0.3.0 pkgrel=1 pkgdesc="Consistent Embeddings of high-dimensional Recordings using Auxiliary variables" url="https://cebra.ai" diff --git a/cebra/__init__.py b/cebra/__init__.py index 0544ed4e..44e9770d 100644 --- a/cebra/__init__.py +++ b/cebra/__init__.py @@ -47,7 +47,7 @@ import cebra.integrations.sklearn as sklearn -__version__ = "0.3.0rc1" +__version__ = "0.3.0" __all__ = ["CEBRA"] __allow_lazy_imports = False __lazy_imports = {} diff --git a/reinstall.sh b/reinstall.sh index a433016a..ad8cb83a 100755 --- a/reinstall.sh +++ b/reinstall.sh @@ -15,7 +15,7 @@ pip uninstall -y cebra # Get version info after uninstalling --- this will automatically get the # most recent version based on the source code in the current directory. # $(tools/get_cebra_version.sh) -VERSION=0.3.0rc1 +VERSION=0.3.0 echo "Upgrading to CEBRA v${VERSION}" # Upgrade the build system (PEP517/518 compatible)