Skip to content

Commit 0fc7f5a

Browse files
committedJan 31, 2024
Version 1.2.2
1 parent 8ca7557 commit 0fc7f5a

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
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.1"
11+
PACKAGE_VERSION: "1.2.2"
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.1"
9+
PACKAGE_VERSION: "1.2.2"
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.1)
2+
project(QPALM VERSION 1.2.2)
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.1"
9+
version = v"1.2.2"
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" = "pieter.p.dev@outlook.com" }]
77
keywords = []
88
classifiers = []
9-
dependencies = ["qpalm==1.2.1"]
10-
version = "1.2.1"
9+
dependencies = ["qpalm==1.2.2"]
10+
version = "1.2.2"
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.1"
3+
__version__ = "1.2.2"
44

55
import os
66
import typing

‎README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,13 @@ 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.1/qpalm-matlab-linux.zip', userpath)
51+
unzip('https://github.com/kul-optec/QPALM/releases/download/1.2.2/qpalm-matlab-linux.zip', userpath)
5252
```
5353
```matlab
54-
unzip('https://github.com/kul-optec/QPALM/releases/download/1.2.1/qpalm-matlab-windows.zip', userpath)
54+
unzip('https://github.com/kul-optec/QPALM/releases/download/1.2.2/qpalm-matlab-windows.zip', userpath)
5555
```
5656
```matlab
57-
unzip('https://github.com/kul-optec/QPALM/releases/download/1.2.1/qpalm-matlab-macos.zip', userpath)
57+
unzip('https://github.com/kul-optec/QPALM/releases/download/1.2.2/qpalm-matlab-macos.zip', userpath)
5858
```
5959

6060
### C/C++/Fortran

‎doxygen/doxypages/mainpage.dox

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@
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.1/qpalm-matlab-linux.zip', userpath)
41+
* unzip('https://github.com/kul-optec/QPALM/releases/download/1.2.2/qpalm-matlab-linux.zip', userpath)
4242
* \endcode
4343
* \code{.m}
44-
* unzip('https://github.com/kul-optec/QPALM/releases/download/1.2.1/qpalm-matlab-windows.zip', userpath)
44+
* unzip('https://github.com/kul-optec/QPALM/releases/download/1.2.2/qpalm-matlab-windows.zip', userpath)
4545
* \endcode
4646
* \code{.m}
47-
* unzip('https://github.com/kul-optec/QPALM/releases/download/1.2.1/qpalm-matlab-macos.zip', userpath)
47+
* unzip('https://github.com/kul-optec/QPALM/releases/download/1.2.2/qpalm-matlab-macos.zip', userpath)
4848
* \endcode
4949
*
5050
* \subsection build-source Building QPALM from source

‎pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ dependencies = ["numpy>=1.19,<2", "scipy>=1.6,<2"]
4545
dynamic = ["version", "description"]
4646

4747
[project.optional-dependencies]
48-
debug = ["qpalm-debug==1.2.1"]
48+
debug = ["qpalm-debug==1.2.2"]
4949
test = ["pytest>=7.2.0,<7.5"]
5050

5151
[project.urls]

0 commit comments

Comments
 (0)