Skip to content

Commit

Permalink
Version 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tttapa committed Nov 30, 2022
1 parent 2404a16 commit 12be22d
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 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.1.3b2'
PACKAGE_VERSION: '1.1.3'
PACKAGE_NAME: qpalm
PYTHON_VERSION: '3.10'

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 @@ -11,7 +11,7 @@ on:
types: ['released', 'prereleased']

env:
PACKAGE_VERSION: '1.1.3b2'
PACKAGE_VERSION: '1.1.3'
PACKAGE_NAME: qpalm
MODULE_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,6 +1,6 @@
cmake_minimum_required(VERSION 3.17)
project(QPALM VERSION 1.1.3)
set(PY_VERSION_SUFFIX "b2")
set(PY_VERSION_SUFFIX "")

# Options
include(CMakeDependentOption)
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.1.3b2"]
version = "1.1.3b2"
dependencies = ["qpalm==1.1.3"]
version = "1.1.3"
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.1.3b2'
__version__ = '1.1.3'

import os
import typing
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ To install the Matlab interface, download
extract it into the `~/Documents/MATLAB` folder.
As a one-liner in the Matlab console:
```matlab
unzip('https://github.com/kul-optec/QPALM/releases/download/1.1.3b2/qpalm-matlab-linux.zip', userpath)
unzip('https://github.com/kul-optec/QPALM/releases/download/1.1.3/qpalm-matlab-linux.zip', userpath)
```
```matlab
unzip('https://github.com/kul-optec/QPALM/releases/download/1.1.3b2/qpalm-matlab-windows.zip', userpath)
unzip('https://github.com/kul-optec/QPALM/releases/download/1.1.3/qpalm-matlab-windows.zip', userpath)
```
```matlab
unzip('https://github.com/kul-optec/QPALM/releases/download/1.1.3b2/qpalm-matlab-macos.zip', userpath)
unzip('https://github.com/kul-optec/QPALM/releases/download/1.1.3/qpalm-matlab-macos.zip', userpath)
```

### C/C++/Fortran
Expand Down
6 changes: 3 additions & 3 deletions doxygen/doxypages/mainpage.dox
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@
*
* As a one-liner in the Matlab console:
* \code{.m}
* unzip('https://github.com/kul-optec/QPALM/releases/download/1.1.3b2/qpalm-matlab-linux.zip', userpath)
* unzip('https://github.com/kul-optec/QPALM/releases/download/1.1.3/qpalm-matlab-linux.zip', userpath)
* \endcode
* \code{.m}
* unzip('https://github.com/kul-optec/QPALM/releases/download/1.1.3b2/qpalm-matlab-windows.zip', userpath)
* unzip('https://github.com/kul-optec/QPALM/releases/download/1.1.3/qpalm-matlab-windows.zip', userpath)
* \endcode
* \code{.m}
* unzip('https://github.com/kul-optec/QPALM/releases/download/1.1.3b2/qpalm-matlab-macos.zip', userpath)
* unzip('https://github.com/kul-optec/QPALM/releases/download/1.1.3/qpalm-matlab-macos.zip', userpath)
* \endcode
*
* \subsection build-source Building QPALM from source
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ dynamic = ["version", "description"]

[project.optional-dependencies]
debug = [
"qpalm-debug==1.1.3b2"
"qpalm-debug==1.1.3"
]

[project.urls]
Expand Down

0 comments on commit 12be22d

Please sign in to comment.