Skip to content

Commit 89a8548

Browse files
committed
Version 1.0.0a19
1 parent b028aed commit 89a8548

File tree

12 files changed

+28
-28
lines changed

12 files changed

+28
-28
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
types: ['released', 'prereleased']
1111

1212
env:
13-
PACKAGE_VERSION: "1.0.0a19.dev0"
13+
PACKAGE_VERSION: "1.0.0a19"
1414
PACKAGE_NAME: alpaqa
1515
PYTHON_VERSION: '3.11'
1616

.github/workflows/wheel.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.0.0a19.dev0"
9+
PACKAGE_VERSION: "1.0.0a19"
1010
PACKAGE_NAME: alpaqa
1111
C_EXTENSIONS: _alpaqa
1212

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ project(alpaqa
55
HOMEPAGE_URL "https://github.com/kul-optec/alpaqa"
66
LANGUAGES CXX
77
)
8-
set(PY_VERSION_SUFFIX "a19.dev0")
8+
set(PY_VERSION_SUFFIX "a19")
99
include(CTest)
1010
list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake/find")
1111

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![CI Tests: C++](https://github.com/kul-optec/alpaqa/actions/workflows/linux.yml/badge.svg)](https://github.com/kul-optec/alpaqa/actions/workflows/linux.yml)
22
[![CI Tests: Python](https://github.com/kul-optec/alpaqa/actions/workflows/wheel-short-test.yml/badge.svg)](https://github.com/kul-optec/alpaqa/actions/workflows/wheel-short-test.yml)
33
[![CI: Matlab](https://github.com/kul-optec/alpaqa/actions/workflows/matlab.yml/badge.svg)](https://github.com/kul-optec/alpaqa/actions/workflows/matlab.yml)
4-
[![Docs](https://img.shields.io/badge/Documentation-1.0.0a18-blue?logo=sphinx)](https://kul-optec.github.io/alpaqa/1.0.0a18/Sphinx/index.html)
4+
[![Docs](https://img.shields.io/badge/Documentation-1.0.0a19-blue?logo=sphinx)](https://kul-optec.github.io/alpaqa/1.0.0a19/Sphinx/index.html)
55
[![PyPI Downloads](https://img.shields.io/pypi/dm/alpaqa?label=PyPI&logo=python)](https://pypi.org/project/alpaqa)
66
[![GitHub all releases](https://img.shields.io/github/downloads/kul-optec/alpaqa/total?label=Downloads&logo=cplusplus)](https://github.com/kul-optec/alpaqa/releases)
77
[![GitHub License](https://img.shields.io/github/license/kul-optec/alpaqa?label=License&logo=gnu)](https://github.com/kul-optec/alpaqa/blob/develop/LICENSE)
@@ -32,11 +32,11 @@ $$
3232

3333
## Documentation
3434

35-
- [**Documentation** (Sphinx)](https://kul-optec.github.io/alpaqa/1.0.0a18/Sphinx/index.html)
36-
- [**Python examples**](https://kul-optec.github.io/alpaqa/1.0.0a18/Sphinx/examples/index.html)
37-
- [**C++ documentation** (Doxygen)](https://kul-optec.github.io/alpaqa/1.0.0a18/Doxygen/index.html)
38-
- [**C++ examples**](https://kul-optec.github.io/alpaqa/1.0.0a18/Doxygen/examples.html)
39-
- [**Matlab documentation**](https://kul-optec.github.io/alpaqa/1.0.0a18/Sphinx/reference/matlab-api.html)
35+
- [**Documentation** (Sphinx)](https://kul-optec.github.io/alpaqa/1.0.0a19/Sphinx/index.html)
36+
- [**Python examples**](https://kul-optec.github.io/alpaqa/1.0.0a19/Sphinx/examples/index.html)
37+
- [**C++ documentation** (Doxygen)](https://kul-optec.github.io/alpaqa/1.0.0a19/Doxygen/index.html)
38+
- [**C++ examples**](https://kul-optec.github.io/alpaqa/1.0.0a19/Doxygen/examples.html)
39+
- [**Matlab documentation**](https://kul-optec.github.io/alpaqa/1.0.0a19/Sphinx/reference/matlab-api.html)
4040

4141
## Installation
4242

@@ -47,7 +47,7 @@ python3 -m pip install --upgrade --pre alpaqa
4747
```
4848

4949
For more information, please see the full
50-
[installation instructions](https://kul-optec.github.io/alpaqa/1.0.0a18/Sphinx/install/installation.html).
50+
[installation instructions](https://kul-optec.github.io/alpaqa/1.0.0a19/Sphinx/install/installation.html).
5151

5252
## Publications
5353

doxygen/sphinx/source/install/installation.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ For Debian-based systems, the .deb packages can be installed using
3636
.. code-block:: sh
3737
3838
sudo apt update
39-
sudo apt install ./libalpaqa*_1.0.0a18_amd64.deb
39+
sudo apt install ./libalpaqa*_1.0.0a19_amd64.deb
4040
4141
Different components are available:
4242

@@ -70,7 +70,7 @@ Alternatively, the .tar.gz file can be extracted and installed manually.
7070

7171
.. code-block:: sh
7272
73-
sudo tar xzf alpaqa-1.0.0a18-Linux-x86_64.tar.gz -C /usr/local --strip-components=1
73+
sudo tar xzf alpaqa-1.0.0a19-Linux-x86_64.tar.gz -C /usr/local --strip-components=1
7474
7575
This requires glibc 2.17 or later. You may need to install or pre-load the
7676
following additional runtime dependencies:
@@ -92,7 +92,7 @@ command in the MATLAB command window:
9292

9393
.. code-block:: matlab
9494
95-
unzip(['https://github.com/kul-optec/alpaqa/releases/download/1.0.0a18/alpaqa-matlab-' computer('arch') '.zip'], userpath)
95+
unzip(['https://github.com/kul-optec/alpaqa/releases/download/1.0.0a19/alpaqa-matlab-' computer('arch') '.zip'], userpath)
9696
9797
You need CasADi to be installed as well: https://web.casadi.org/get
9898

examples/CMake/Solver/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ pip install -U conan cmake
2828
Export the alpaqa library to Conan:
2929

3030
```sh
31-
git clone https://github.com/kul-optec/alpaqa --branch=1.0.0a18 --single-branch
31+
git clone https://github.com/kul-optec/alpaqa --branch=1.0.0a19 --single-branch
3232
conan export alpaqa
3333
```
3434

@@ -135,7 +135,7 @@ cmake --build --preset conan-release -j
135135
```
136136

137137
A complete list of the available components and targets can be found on the
138-
[CMake API Reference](https://kul-optec.github.io/alpaqa/1.0.0a18/Sphinx/reference/cmake-api.html) page.
138+
[CMake API Reference](https://kul-optec.github.io/alpaqa/1.0.0a19/Sphinx/reference/cmake-api.html) page.
139139

140140
### Disabling tests
141141

examples/CMake/Solver/conanfile.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[requires]
2-
alpaqa/1.0.0-alpha.18
2+
alpaqa/1.0.0-alpha.19
33
[generators]
44
CMakeDeps
55
CMakeToolchain

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dynamic = ["version", "description"]
2727

2828
[project.optional-dependencies]
2929
docs = ["breathe~=4.35.0", "sphinx>=7.2.2,<8", "sphinx-tabs~=3.4.4", "sphinxcontrib-matlabdomain~=0.20.2", "sphinxcontrib-moderncmakedomain~=3.27.0", "furo==2023.08.19", "matplotlib"]
30-
debug = ["alpaqa-debug==1.0.0a19.dev0"]
30+
debug = ["alpaqa-debug==1.0.0a19"]
3131
test = ["pytest>=7.2.0,<7.5", "qpalm~=1.2.1", "scipy>=1.9.3,<1.12"]
3232

3333
[project.urls]

python/README.rst

+6-6
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ The solvers in this library solve minimization problems of the following form:
2323
Documentation
2424
-------------
2525

26-
- `Documentation (Sphinx) <https://kul-optec.github.io/alpaqa/1.0.0a18/Sphinx/index.html>`_
27-
- `Python examples <https://kul-optec.github.io/alpaqa/1.0.0a18/Sphinx/examples/index.html>`_
28-
- `Documentation (Doxygen) <https://kul-optec.github.io/alpaqa/1.0.0a18/Doxygen/index.html>`_
29-
- `C++ examples <https://kul-optec.github.io/alpaqa/1.0.0a18/Doxygen/examples.html>`_
30-
- `Matlab documentation <https://kul-optec.github.io/alpaqa/1.0.0a18/Sphinx/reference/matlab-api.html>`_
26+
- `Documentation (Sphinx) <https://kul-optec.github.io/alpaqa/1.0.0a19/Sphinx/index.html>`_
27+
- `Python examples <https://kul-optec.github.io/alpaqa/1.0.0a19/Sphinx/examples/index.html>`_
28+
- `Documentation (Doxygen) <https://kul-optec.github.io/alpaqa/1.0.0a19/Doxygen/index.html>`_
29+
- `C++ examples <https://kul-optec.github.io/alpaqa/1.0.0a19/Doxygen/examples.html>`_
30+
- `Matlab documentation <https://kul-optec.github.io/alpaqa/1.0.0a19/Sphinx/reference/matlab-api.html>`_
3131

3232
Installation
3333
------------
@@ -39,7 +39,7 @@ The Python interface can be installed directly from PyPI:
3939
python3 -m pip install --upgrade --pre alpaqa
4040
4141
For more information, please see the full
42-
`installation instructions <https://kul-optec.github.io/alpaqa/1.0.0a18/Sphinx/install/installation.html>`_.
42+
`installation instructions <https://kul-optec.github.io/alpaqa/1.0.0a19/Sphinx/install/installation.html>`_.
4343

4444
Publications
4545
------------

python/alpaqa-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 = ["alpaqa==1.0.0a19.dev0"]
10-
version = "1.0.0a19.dev0"
9+
dependencies = ["alpaqa==1.0.0a19"]
10+
version = "1.0.0a19"
1111
description = "Debug symbols for the alpaqa package."
1212

1313
[project.urls]

python/alpaqa/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Augmented Lagrangian and PANOC solvers for nonconvex numerical optimization.
33
"""
4-
__version__ = "1.0.0a19.dev0"
4+
__version__ = "1.0.0a19"
55

66
from .alpaqa import *
77
from .alpaqa import __c_version__

scripts/dev/install-locally.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ else
9393
-C--cross="$pfx/$triple.py-build-cmake.cross.toml" \
9494
-C--local="$PWD/$config"
9595
pip install -f staging --force-reinstall --no-deps \
96-
"alpaqa==1.0.0a19.dev0" "alpaqa-debug==1.0.0a19.dev0"
96+
"alpaqa==1.0.0a19" "alpaqa-debug==1.0.0a19"
9797
pip install -f staging \
98-
"alpaqa[test]==1.0.0a19.dev0" "alpaqa-debug==1.0.0a19.dev0"
98+
"alpaqa[test]==1.0.0a19" "alpaqa-debug==1.0.0a19"
9999
fi
100100
pytest

0 commit comments

Comments
 (0)