From 2ade1d11facb2f0cf0831f9f2becfedf5e40fe62 Mon Sep 17 00:00:00 2001 From: Pieter Pas Date: Mon, 4 Nov 2024 21:34:50 +0100 Subject: [PATCH] Version 1.2.4.dev0 --- .github/workflows/wheel-short-test.yml | 2 +- .github/workflows/wheel-upload.yml | 2 +- QPALM/CMakeLists.txt | 4 ++-- QPALM/interfaces/julia/build_tarballs.jl | 2 +- QPALM/interfaces/python/qpalm-debug/pyproject.toml | 4 ++-- QPALM/interfaces/python/qpalm/__init__.py | 2 +- conanfile.py | 2 +- pyproject.toml | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/wheel-short-test.yml b/.github/workflows/wheel-short-test.yml index be4a169a..9e1cb273 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.3" + PACKAGE_VERSION: "1.2.4.dev0" PACKAGE_NAME: qpalm PYTHON_VERSION: '3.11' diff --git a/.github/workflows/wheel-upload.yml b/.github/workflows/wheel-upload.yml index 134f88bd..b4a0aea3 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.3" + PACKAGE_VERSION: "1.2.4.dev0" PACKAGE_NAME: qpalm C_EXTENSIONS: _qpalm diff --git a/QPALM/CMakeLists.txt b/QPALM/CMakeLists.txt index d33d787a..7446ea53 100644 --- a/QPALM/CMakeLists.txt +++ b/QPALM/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.17) -project(QPALM VERSION 1.2.3) -set(PY_VERSION_SUFFIX "") +project(QPALM VERSION 1.2.4) +set(PY_VERSION_SUFFIX ".dev0") # Options include(CMakeDependentOption) diff --git a/QPALM/interfaces/julia/build_tarballs.jl b/QPALM/interfaces/julia/build_tarballs.jl index facb64a9..d030fb19 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.3" +version = v"1.2.4" # 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 0fbe82a7..711bae48 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.3"] -version = "1.2.3" +dependencies = ["qpalm==1.2.4.dev0"] +version = "1.2.4.dev0" 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 850c33cb..d92c819e 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.3" +__version__ = "1.2.4.dev0" import os import typing diff --git a/conanfile.py b/conanfile.py index 0d6af860..77331ac5 100644 --- a/conanfile.py +++ b/conanfile.py @@ -8,7 +8,7 @@ class QPALMRecipe(ConanFile): name = "qpalm" - version = "1.2.3" + version = "1.2.4" # Optional metadata license = "LGPLv3" diff --git a/pyproject.toml b/pyproject.toml index 0171f2d8..7fa3236a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -45,7 +45,7 @@ dependencies = ["numpy>=1.19,<2", "scipy>=1.6,<2"] dynamic = ["version", "description"] [project.optional-dependencies] -debug = ["qpalm-debug==1.2.3"] +debug = ["qpalm-debug==1.2.4.dev0"] test = ["pytest>=7.2.0,<7.5"] [project.urls]