Skip to content

Commit 0f6ebaf

Browse files
committed
Bump version
1 parent c5266ab commit 0f6ebaf

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

docs/source/changelog.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
# Changelog
22

3-
## Unreleased
3+
## 0.4.0
44
- Add `model.add_m_variables` and `model.add_m_linear_constraints` matrix modeling API
55
- Add `model.computeIIS` and IIS related attributes for constraint and variable
66
- Implement constraint based on compare operators, now you can use `model.add_linear_constraint(x + y <= 1.0)` directly
7+
- Drop support for Python 3.8
8+
- Add wheels for Linux ARM64
9+
- Supports HiGHS 1.9.0 and Mosek 11
710

811
## 0.3.0
912
- Add `model.set_variable_bounds(variable, lb, ub)` to make it easier to change variable bounds

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"
44

55
[project]
66
name = "pyoptinterface"
7-
version = "0.3.0"
7+
version = "0.4.0"
88
description = "Python interface to multiple optimization solvers"
99
readme = "README.md"
1010
requires-python = ">=3.9"
@@ -33,6 +33,6 @@ cmake.build-type = "Release"
3333
wheel.py-api = "cp312"
3434

3535
[tool.scikit-build.cmake.define]
36-
PYTHON_VERSION = { env = "PYTHON_VERSION", default = "3.8" }
36+
PYTHON_VERSION = { env = "PYTHON_VERSION", default = "3.9" }
3737
CMAKE_FIND_DEBUG_MODE = "OFF"
3838
ENABLE_TEST_MAIN = "OFF"

0 commit comments

Comments
 (0)