Skip to content

Commit 7bf95e0

Browse files
committed
Version 1.2.5
1 parent f71da00 commit 7bf95e0

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

.github/workflows/wheel-short-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- '**'
99

1010
env:
11-
PACKAGE_VERSION: "1.2.4"
11+
PACKAGE_VERSION: "1.2.5"
1212
PACKAGE_NAME: qpalm
1313
PYTHON_VERSION: '3.11'
1414

.github/workflows/wheel-upload.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
types: ['released', 'prereleased']
77

88
env:
9-
PACKAGE_VERSION: "1.2.4"
9+
PACKAGE_VERSION: "1.2.5"
1010
PACKAGE_NAME: qpalm
1111
C_EXTENSIONS: _qpalm
1212

QPALM/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.17)
2-
project(QPALM VERSION 1.2.4)
2+
project(QPALM VERSION 1.2.5)
33
set(PY_VERSION_SUFFIX "")
44

55
# Options

QPALM/interfaces/julia/build_tarballs.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using BinaryBuilder, Pkg
77

88
name = "QPALM"
9-
version = v"1.2.4"
9+
version = v"1.2.5"
1010

1111
# Collection of sources required to complete build
1212
sources = [

QPALM/interfaces/python/qpalm-debug/pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ license = { "file" = "../../../../LICENSE" }
66
authors = [{ "name" = "Pieter P", "email" = "[email protected]" }]
77
keywords = []
88
classifiers = []
9-
dependencies = ["qpalm==1.2.4"]
10-
version = "1.2.4"
9+
dependencies = ["qpalm==1.2.5"]
10+
version = "1.2.5"
1111
description = "Debug symbols for the qpalm package."
1212

1313
[project.urls]

QPALM/interfaces/python/qpalm/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Proximal Augmented Lagrangian method for Quadratic Programs"""
22

3-
__version__ = "1.2.4"
3+
__version__ = "1.2.5"
44

55
import os
66
import typing

conanfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
class QPALMRecipe(ConanFile):
1010
name = "qpalm"
11-
version = "1.2.4"
11+
version = "1.2.5"
1212
package_type = "library"
1313

1414
# Optional metadata

examples/conanfile.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[requires]
2-
qpalm/1.2.4
2+
qpalm/1.2.5
33
[generators]
44
CMakeDeps
55
CMakeToolchain

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ dependencies = ["numpy>=1.19,<3", "scipy>=1.6,<2"]
5151
dynamic = ["version", "description"]
5252

5353
[project.optional-dependencies]
54-
debug = ["qpalm-debug==1.2.4"]
54+
debug = ["qpalm-debug==1.2.5"]
5555
test = ["pytest>=7.2.0,<9"]
5656

5757
[project.urls]

0 commit comments

Comments
 (0)