diff --git a/.github/workflows/wheel-short-test.yml b/.github/workflows/wheel-short-test.yml index 4618e09e..d9b3d18a 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" + PACKAGE_VERSION: "1.2.5" PACKAGE_NAME: qpalm PYTHON_VERSION: '3.11' diff --git a/.github/workflows/wheel-upload.yml b/.github/workflows/wheel-upload.yml index 98c24aee..b79adafc 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" + PACKAGE_VERSION: "1.2.5" PACKAGE_NAME: qpalm C_EXTENSIONS: _qpalm diff --git a/QPALM/CMakeLists.txt b/QPALM/CMakeLists.txt index e840b77e..585f8e48 100644 --- a/QPALM/CMakeLists.txt +++ b/QPALM/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.17) -project(QPALM VERSION 1.2.4) +project(QPALM VERSION 1.2.5) set(PY_VERSION_SUFFIX "") # Options diff --git a/QPALM/interfaces/julia/build_tarballs.jl b/QPALM/interfaces/julia/build_tarballs.jl index d030fb19..e4ff851e 100644 --- a/QPALM/interfaces/julia/build_tarballs.jl +++ b/QPALM/interfaces/julia/build_tarballs.jl @@ -6,7 +6,7 @@ using BinaryBuilder, Pkg name = "QPALM" -version = v"1.2.4" +version = v"1.2.5" # Collection of sources required to complete build sources = [ diff --git a/QPALM/interfaces/python/qpalm-debug/pyproject.toml b/QPALM/interfaces/python/qpalm-debug/pyproject.toml index 216fc8d2..11c79dc9 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"] -version = "1.2.4" +dependencies = ["qpalm==1.2.5"] +version = "1.2.5" 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 fcc4c817..9ed42e09 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" +__version__ = "1.2.5" import os import typing diff --git a/conanfile.py b/conanfile.py index ee79711f..1ebd9c94 100644 --- a/conanfile.py +++ b/conanfile.py @@ -8,7 +8,7 @@ class QPALMRecipe(ConanFile): name = "qpalm" - version = "1.2.4" + version = "1.2.5" package_type = "library" # Optional metadata diff --git a/examples/conanfile.txt b/examples/conanfile.txt index 5aaadf00..31ea74f4 100644 --- a/examples/conanfile.txt +++ b/examples/conanfile.txt @@ -1,5 +1,5 @@ [requires] -qpalm/1.2.4 +qpalm/1.2.5 [generators] CMakeDeps CMakeToolchain diff --git a/pyproject.toml b/pyproject.toml index 3fe11f49..247bafac 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"] +debug = ["qpalm-debug==1.2.5"] test = ["pytest>=7.2.0,<9"] [project.urls]