Skip to content

Commit

Permalink
Version 1.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
tttapa committed Nov 21, 2024
1 parent c005750 commit 1633240
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/wheel-short-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
- '**'

env:
PACKAGE_VERSION: "1.2.4"
PACKAGE_VERSION: "1.2.5"
PACKAGE_NAME: qpalm
PYTHON_VERSION: '3.11'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheel-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion QPALM/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion QPALM/interfaces/julia/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
4 changes: 2 additions & 2 deletions QPALM/interfaces/python/qpalm-debug/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ license = { "file" = "../../../../LICENSE" }
authors = [{ "name" = "Pieter P", "email" = "[email protected]" }]
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]
Expand Down
2 changes: 1 addition & 1 deletion QPALM/interfaces/python/qpalm/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Proximal Augmented Lagrangian method for Quadratic Programs"""

__version__ = "1.2.4"
__version__ = "1.2.5"

import os
import typing
Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

class QPALMRecipe(ConanFile):
name = "qpalm"
version = "1.2.4"
version = "1.2.5"
package_type = "library"

# Optional metadata
Expand Down
2 changes: 1 addition & 1 deletion examples/conanfile.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[requires]
qpalm/1.2.4
qpalm/1.2.5
[generators]
CMakeDeps
CMakeToolchain
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 1633240

Please sign in to comment.