From 66e74350ef8ff297c7518dc123d46c85cad274de Mon Sep 17 00:00:00 2001 From: Pieter Pas Date: Fri, 15 Nov 2024 13:47:59 +0100 Subject: [PATCH] Version 1.2.4 --- .github/workflows/wheel-short-test.yml | 2 +- .github/workflows/wheel-upload.yml | 2 +- QPALM/CMakeLists.txt | 2 +- QPALM/interfaces/python/qpalm-debug/pyproject.toml | 4 ++-- QPALM/interfaces/python/qpalm/__init__.py | 2 +- README.md | 2 +- doxygen/doxypages/mainpage.dox | 2 +- pyproject.toml | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/wheel-short-test.yml b/.github/workflows/wheel-short-test.yml index ddb83e2a..4618e09e 100644 --- a/.github/workflows/wheel-short-test.yml +++ b/.github/workflows/wheel-short-test.yml @@ -8,7 +8,7 @@ on: - '**' env: - PACKAGE_VERSION: "1.2.4.dev0" + PACKAGE_VERSION: "1.2.4" PACKAGE_NAME: qpalm PYTHON_VERSION: '3.11' diff --git a/.github/workflows/wheel-upload.yml b/.github/workflows/wheel-upload.yml index d37967ce..4761f757 100644 --- a/.github/workflows/wheel-upload.yml +++ b/.github/workflows/wheel-upload.yml @@ -6,7 +6,7 @@ on: types: ['released', 'prereleased'] env: - PACKAGE_VERSION: "1.2.4.dev0" + PACKAGE_VERSION: "1.2.4" PACKAGE_NAME: qpalm C_EXTENSIONS: _qpalm diff --git a/QPALM/CMakeLists.txt b/QPALM/CMakeLists.txt index 7446ea53..e840b77e 100644 --- a/QPALM/CMakeLists.txt +++ b/QPALM/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.17) project(QPALM VERSION 1.2.4) -set(PY_VERSION_SUFFIX ".dev0") +set(PY_VERSION_SUFFIX "") # Options include(CMakeDependentOption) diff --git a/QPALM/interfaces/python/qpalm-debug/pyproject.toml b/QPALM/interfaces/python/qpalm-debug/pyproject.toml index 36fc8a21..e2c59864 100644 --- a/QPALM/interfaces/python/qpalm-debug/pyproject.toml +++ b/QPALM/interfaces/python/qpalm-debug/pyproject.toml @@ -6,8 +6,8 @@ license = { "file" = "../../../../LICENSE" } authors = [{ "name" = "Pieter P", "email" = "pieter.p.dev@outlook.com" }] keywords = [] classifiers = [] -dependencies = ["qpalm==1.2.4.dev0"] -version = "1.2.4.dev0" +dependencies = ["qpalm==1.2.4"] +version = "1.2.4" description = "Debug symbols for the qpalm package." [project.urls] diff --git a/QPALM/interfaces/python/qpalm/__init__.py b/QPALM/interfaces/python/qpalm/__init__.py index d92c819e..fcc4c817 100644 --- a/QPALM/interfaces/python/qpalm/__init__.py +++ b/QPALM/interfaces/python/qpalm/__init__.py @@ -1,6 +1,6 @@ """Proximal Augmented Lagrangian method for Quadratic Programs""" -__version__ = "1.2.4.dev0" +__version__ = "1.2.4" import os import typing diff --git a/README.md b/README.md index fac5afb4..58ae1286 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ To install the Matlab interface, download extract it into the `~/Documents/MATLAB` folder. As a one-liner in the Matlab console: ```matlab -unzip(['https://github.com/kul-optec/QPALM/releases/download/1.2.3/qpalm-matlab-' computer('arch') '.zip'], userpath) +unzip(['https://github.com/kul-optec/QPALM/releases/latest/download/qpalm-matlab-' computer('arch') '.zip'], userpath) ``` Matlab versions R2021a and later are supported (R2023b and later on ARM64). diff --git a/doxygen/doxypages/mainpage.dox b/doxygen/doxypages/mainpage.dox index 25e9a6b5..c4b1946a 100644 --- a/doxygen/doxypages/mainpage.dox +++ b/doxygen/doxypages/mainpage.dox @@ -38,7 +38,7 @@ * * As a one-liner in the Matlab console: * \code{.m} - * unzip(['https://github.com/kul-optec/QPALM/releases/download/1.2.3/qpalm-matlab-' computer('arch') '.zip'], userpath) + * unzip(['https://github.com/kul-optec/QPALM/releases/latest/download/qpalm-matlab-' computer('arch') '.zip'], userpath) * \endcode * Matlab versions R2021a and later are supported (R2023b and later on ARM64). * diff --git a/pyproject.toml b/pyproject.toml index bd19c9c7..ac44e86a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,7 +51,7 @@ dependencies = ["numpy>=1.19,<3", "scipy>=1.6,<2"] dynamic = ["version", "description"] [project.optional-dependencies] -debug = ["qpalm-debug==1.2.4.dev0"] +debug = ["qpalm-debug==1.2.4"] test = ["pytest>=7.2.0,<9"] [project.urls]