Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
RSchwan committed Aug 2, 2024
1 parent 1b29a30 commit a9e2cd9
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.2] - 2024-08-02

### Changed

- Handle inf constraints in general inequalities by setting corresponding row in G to zero and emitting a warning to the user.

## [0.4.1] - 2024-06-22

### Changed
Expand Down Expand Up @@ -99,7 +105,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.1...HEAD
[unreleased]: https://github.com/PREDICT-EPFL/piqp/compare/v0.4.2...HEAD
[0.4.2]: https://github.com/PREDICT-EPFL/piqp/compare/v0.4.1...v0.4.2
[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
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.1
VERSION 0.4.2
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.1
version: 0.4.2
date: 2024-06-21
author: Roland Schwan <[email protected]>
maintainer: Roland Schwan <[email protected]>
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.1
#define PIQP_VERSION 0.4.2
#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.1'
__version__: str = '0.4.2'
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.1",
version="0.4.2",
url='https://github.com/PREDICT-EPFL/piqp',
author="Roland Schwan",
author_email="[email protected]",
Expand Down

0 comments on commit a9e2cd9

Please sign in to comment.