Skip to content

Commit cf37ee4

Browse files
committed
Version 1.1.0a1
1 parent 6192ba3 commit cf37ee4

File tree

15 files changed

+30
-30
lines changed

15 files changed

+30
-30
lines changed

.github/workflows/setup-conan/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ runs:
4949
shell: bash
5050
run: >
5151
pip install -U pip build
52-
conan~=2.19.1 'py-build-cmake~=0.6.0a2' 'pybind11-stubgen~=2.5.5'
52+
conan~=2.20.0 'py-build-cmake~=0.6.0a2' 'pybind11-stubgen~=2.5.5'
5353
5454
- name: Configure sccache version
5555
shell: bash

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

Lines changed: 1 addition & 1 deletion
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.0a21.dev0"
13+
PACKAGE_VERSION: "1.1.0a1"
1414
PACKAGE_NAME: alpaqa
1515

1616
jobs:

.github/workflows/wheel.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.0.0a21.dev0'
9+
PACKAGE_VERSION: '1.1.0a1'
1010
PACKAGE_NAME: alpaqa
1111

1212
jobs:

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
cmake_minimum_required(VERSION 3.25...4.1)
22
set(CMAKE_CXX_SCAN_FOR_MODULES Off)
33
project(alpaqa
4-
VERSION 1.0.0
4+
VERSION 1.1.0
55
DESCRIPTION "alpaqa augmented Lagrangian nonlinear programming solvers."
66
HOMEPAGE_URL "https://github.com/kul-optec/alpaqa"
77
LANGUAGES CXX
88
)
9-
set(PY_VERSION_SUFFIX "a21.dev0")
9+
set(PY_VERSION_SUFFIX "a1")
1010
include(CTest)
1111
list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake/find")
1212

README.md

Lines changed: 7 additions & 7 deletions
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.0a19-blue?logo=sphinx)](https://kul-optec.github.io/alpaqa/1.0.0a19/Sphinx/index.html)
4+
[![Docs](https://img.shields.io/badge/Documentation-1.1.0a1-blue?logo=sphinx)](https://kul-optec.github.io/alpaqa/1.1.0a1/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.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)
35+
- [**Documentation** (Sphinx)](https://kul-optec.github.io/alpaqa/1.1.0a1/Sphinx/index.html)
36+
- [**Python examples**](https://kul-optec.github.io/alpaqa/1.1.0a1/Sphinx/examples/index.html)
37+
- [**C++ documentation** (Doxygen)](https://kul-optec.github.io/alpaqa/1.1.0a1/Doxygen/index.html)
38+
- [**C++ examples**](https://kul-optec.github.io/alpaqa/1.1.0a1/Doxygen/examples.html)
39+
- [**Matlab documentation**](https://kul-optec.github.io/alpaqa/1.1.0a1/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.0a19/Sphinx/install/installation.html).
50+
[installation instructions](https://kul-optec.github.io/alpaqa/1.1.0a1/Sphinx/install/installation.html).
5151

5252
## Publications
5353

conanfile.py

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

99
class AlpaqaRecipe(ConanFile):
1010
name = "alpaqa"
11-
version = "1.0.0-alpha.21"
11+
version = "1.1.0-alpha.1"
1212

1313
# Optional metadata
1414
license = "LGPL-3.0-or-later"

doxygen/sphinx/source/install/installation.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ For Debian-based systems, the .deb packages can be installed using
4040
.. code-block:: sh
4141
4242
sudo apt update
43-
sudo apt install ./libalpaqa*_1.0.0a19_amd64.deb
43+
sudo apt install ./libalpaqa*_1.1.0a1_amd64.deb
4444
4545
Different components are available:
4646

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

7575
.. code-block:: sh
7676
77-
sudo tar xzf alpaqa-1.0.0a19-Linux-x86_64.tar.gz -C /usr/local --strip-components=1
77+
sudo tar xzf alpaqa-1.1.0a1-Linux-x86_64.tar.gz -C /usr/local --strip-components=1
7878
7979
When using the development packages, it is important to use the correct version
8080
of Eigen (currently 3.4.0) to avoid ABI incompatibilities.
@@ -104,7 +104,7 @@ command in the MATLAB command window:
104104

105105
.. code-block:: matlab
106106
107-
unzip(['https://github.com/kul-optec/alpaqa/releases/download/1.0.0a19/alpaqa-matlab-' computer('arch') '.zip'], userpath)
107+
unzip(['https://github.com/kul-optec/alpaqa/releases/download/1.1.0a1/alpaqa-matlab-' computer('arch') '.zip'], userpath)
108108
109109
You need CasADi to be installed as well: https://web.casadi.org/get
110110

doxygen/sphinx/source/reference/cmake-api.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ To include alpaqa in your CMake project, use the ``find_package`` command:
77

88
.. code-block:: cmake
99
10-
find_package(alpaqa 1.0.0 [EXACT] [QUIET] [REQUIRED]
10+
find_package(alpaqa 1.1.0 [EXACT] [QUIET] [REQUIRED]
1111
[COMPONENTS <components> ...]
1212
[OPTIONAL_COMPONENTS <components> ...])
1313

examples/CMake/Solver/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.25...4.1)
22
project(alpaqa-cmake-examples CXX)
33

44
# Locate the alpaqa package
5-
find_package(alpaqa 1.0.0 REQUIRED)
5+
find_package(alpaqa 1.1.0 REQUIRED)
66

77
# Compile the example code into an executable
88
add_executable(alpaqa-qp-solver

examples/CMake/Solver/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ pip install -U conan
2626
Export the alpaqa library to Conan:
2727

2828
```sh
29-
git clone https://github.com/kul-optec/alpaqa --branch=1.0.0a19 --single-branch
29+
git clone https://github.com/kul-optec/alpaqa --branch=1.1.0a1 --single-branch
3030
conan export alpaqa
3131
```
3232

@@ -124,4 +124,4 @@ target_link_libraries(alpaqa-qp-solver PRIVATE alpaqa::casadi-loader)
124124
```
125125

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

0 commit comments

Comments
 (0)