Skip to content

Commit

Permalink
prepare 0.4.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
RSchwan committed Jun 22, 2024
1 parent 2a8d388 commit 160648f
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 6 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.1] - 2024-06-22

### Changed

- Fix installation paths for CMake install.

## [0.4.0] - 2024-06-21

### Changed
Expand Down Expand Up @@ -93,7 +99,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

Initial release of PIQP!

[unreleased]: https://github.com/PREDICT-EPFL/piqp/compare/v0.4.0...HEAD
[unreleased]: https://github.com/PREDICT-EPFL/piqp/compare/v0.4.1...HEAD
[0.4.1]: https://github.com/PREDICT-EPFL/piqp/compare/v0.4.0...v0.4.1
[0.4.0]: https://github.com/PREDICT-EPFL/piqp/compare/v0.3.1...v0.4.0
[0.3.1]: https://github.com/PREDICT-EPFL/piqp/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/PREDICT-EPFL/piqp/compare/v0.2.4...v0.3.0
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
cmake_minimum_required(VERSION 3.21)

project(piqp
VERSION 0.4.0
VERSION 0.4.1
LANGUAGES C CXX
)

Expand Down
2 changes: 1 addition & 1 deletion interfaces/octave/package/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: piqp
version: 0.4.0
version: 0.4.1
date: 2024-06-21
author: Roland Schwan <roland.schwan@epfl.ch>
maintainer: Roland Schwan <roland.schwan@epfl.ch>
Expand Down
2 changes: 1 addition & 1 deletion interfaces/octave/piqp_oct.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#define PIQP_MEX_SIGNATURE 0x271C1A7A

#ifndef PIQP_VERSION
#define PIQP_VERSION 0.4.0
#define PIQP_VERSION 0.4.1
#endif

using Vec = Eigen::Matrix<double, Eigen::Dynamic, 1>;
Expand Down
2 changes: 1 addition & 1 deletion interfaces/python/piqp/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -168,4 +168,4 @@ PIQP_NUMERICS: piqp.Status # value = <Status.PIQP_NUMERICS: -8>
PIQP_PRIMAL_INFEASIBLE: piqp.Status # value = <Status.PIQP_PRIMAL_INFEASIBLE: -2>
PIQP_SOLVED: piqp.Status # value = <Status.PIQP_SOLVED: 1>
PIQP_UNSOLVED: piqp.Status # value = <Status.PIQP_UNSOLVED: -9>
__version__: str = '0.4.0'
__version__: str = '0.4.1'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def build_extension(self, ext: CMakeExtension) -> None:

setup(
name="piqp",
version="0.4.0",
version="0.4.1",
url='https://github.com/PREDICT-EPFL/piqp',
author="Roland Schwan",
author_email="roland.schwan@epfl.ch",
Expand Down

0 comments on commit 160648f

Please sign in to comment.