Skip to content

Commit a03a75c

Browse files
Release v2.1.0
1 parent 4b7bc00 commit a03a75c

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [2.1.0] - 2025-04-09
8+
79
### Added
810

911
- Python 3.11 is now supported
@@ -92,7 +94,8 @@ All notable changes to this project will be documented in this file.
9294
- Improve linter code rating to 10/10
9395
- Switch from ``setup.py`` to ``pyproject.toml``
9496

95-
[unreleased]: https://github.com/qpsolvers/qpsolvers/compare/v2.0.0...HEAD
97+
[unreleased]: https://github.com/qpsolvers/qpsolvers/compare/v2.1.0...HEAD
98+
[2.1.0]: https://github.com/qpsolvers/qpsolvers/compare/v2.0.0...v2.1.0
9699
[2.0.0]: https://github.com/qpsolvers/qpsolvers/compare/v1.2.0...v2.0.0
97100
[1.2.0]: https://github.com/qpsolvers/qpsolvers/compare/v1.1.0...v1.2.0
98101
[1.1.0]: https://github.com/qpsolvers/qpsolvers/compare/v1.0.1...v1.1.0

lpsolvers/__init__.py

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

1313
from .exceptions import NoSolverSelected, SolverNotFound
1414

15-
__version__ = "2.0.0"
15+
__version__ = "2.1.0"
1616

1717
available_solvers = []
1818

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi"
55
[project]
66
name = "lpsolvers"
77
readme = "README.md"
8-
license = "LGPL-3.0-or-later"
8+
license = {file = "LICENSE"}
99
authors = [
1010
{name = "Stéphane Caron", email = "[email protected]"},
1111
]
@@ -18,6 +18,7 @@ classifiers = [
1818
"Development Status :: 5 - Production/Stable",
1919
"Intended Audience :: Developers",
2020
"Intended Audience :: Science/Research",
21+
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
2122
"Operating System :: OS Independent",
2223
"Programming Language :: Python :: 3.8",
2324
"Programming Language :: Python :: 3.9",

0 commit comments

Comments
 (0)