Skip to content

Commit 66e7435

Browse files
committed
Version 1.2.4
1 parent 6335a04 commit 66e7435

8 files changed

Lines changed: 9 additions & 9 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- '**'
99

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

.github/workflows/wheel-upload.yml

Lines changed: 1 addition & 1 deletion
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.dev0"
9+
PACKAGE_VERSION: "1.2.4"
1010
PACKAGE_NAME: qpalm
1111
C_EXTENSIONS: _qpalm
1212

QPALM/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.17)
22
project(QPALM VERSION 1.2.4)
3-
set(PY_VERSION_SUFFIX ".dev0")
3+
set(PY_VERSION_SUFFIX "")
44

55
# Options
66
include(CMakeDependentOption)

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ license = { "file" = "../../../../LICENSE" }
66
authors = [{ "name" = "Pieter P", "email" = "pieter.p.dev@outlook.com" }]
77
keywords = []
88
classifiers = []
9-
dependencies = ["qpalm==1.2.4.dev0"]
10-
version = "1.2.4.dev0"
9+
dependencies = ["qpalm==1.2.4"]
10+
version = "1.2.4"
1111
description = "Debug symbols for the qpalm package."
1212

1313
[project.urls]

QPALM/interfaces/python/qpalm/__init__.py

Lines changed: 1 addition & 1 deletion
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.dev0"
3+
__version__ = "1.2.4"
44

55
import os
66
import typing

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ To install the Matlab interface, download
4848
extract it into the `~/Documents/MATLAB` folder.
4949
As a one-liner in the Matlab console:
5050
```matlab
51-
unzip(['https://github.com/kul-optec/QPALM/releases/download/1.2.3/qpalm-matlab-' computer('arch') '.zip'], userpath)
51+
unzip(['https://github.com/kul-optec/QPALM/releases/latest/download/qpalm-matlab-' computer('arch') '.zip'], userpath)
5252
```
5353
Matlab versions R2021a and later are supported (R2023b and later on ARM64).
5454

doxygen/doxypages/mainpage.dox

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
*
3939
* As a one-liner in the Matlab console:
4040
* \code{.m}
41-
* unzip(['https://github.com/kul-optec/QPALM/releases/download/1.2.3/qpalm-matlab-' computer('arch') '.zip'], userpath)
41+
* unzip(['https://github.com/kul-optec/QPALM/releases/latest/download/qpalm-matlab-' computer('arch') '.zip'], userpath)
4242
* \endcode
4343
* Matlab versions R2021a and later are supported (R2023b and later on ARM64).
4444
*

pyproject.toml

Lines changed: 1 addition & 1 deletion
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.dev0"]
54+
debug = ["qpalm-debug==1.2.4"]
5555
test = ["pytest>=7.2.0,<9"]
5656

5757
[project.urls]

0 commit comments

Comments
 (0)