From 6672e203a72432694ab13d9ca6a8f6883a630b66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Caron?= Date: Mon, 11 Dec 2023 12:14:12 +0100 Subject: [PATCH] Release v2.0.0 --- CHANGELOG.md | 7 +++++-- CITATION.cff | 4 ++-- README.md | 6 +++--- qpbenchmark/version.py | 2 +- 4 files changed, 11 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cd2bceb..a8115fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,15 +4,17 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [2.0.0] - 2023-12-11 + ### Added * New solver: QPALM ### Changed +* **Breaking:** Rename the project "qpbenchmark" * Don't install solvers by default from PyPI * Move solver issue and timeout listings to test-set themselves -* Rename the project "qpbenchmark" ### Removed @@ -107,7 +109,8 @@ All notable changes to this project will be documented in this file. - SolverSettings class - TestSet class -[unreleased]: https://github.com/qpsolvers/qpbenchmark/compare/v1.2.0...HEAD +[unreleased]: https://github.com/qpsolvers/qpbenchmark/compare/v2.0.0...HEAD +[2.0.0]: https://github.com/qpsolvers/qpbenchmark/compare/v1.2.0...v2.0.0 [1.2.0]: https://github.com/qpsolvers/qpbenchmark/compare/v1.1.0...v1.2.0 [1.1.0]: https://github.com/qpsolvers/qpbenchmark/compare/v1.0.0...v1.1.0 [1.0.0]: https://github.com/qpsolvers/qpbenchmark/compare/v0.1.0-beta...v1.0.0 diff --git a/CITATION.cff b/CITATION.cff index 4d4ba9b..916e31a 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -1,8 +1,8 @@ cff-version: 1.2.0 message: "If you find this code helpful, please cite it as below." title: "qpbenchmark: Benchmark for quadratic programming solvers available in Python" -version: 1.2.0 -date-released: 2023-11-27 +version: 2.0.0 +date-released: 2023-12-11 url: "https://github.com/qpsolvers/qpbenchmark" license: "Apache-2.0" authors: diff --git a/README.md b/README.md index f37afcb..703d210 100644 --- a/README.md +++ b/README.md @@ -138,13 +138,13 @@ Contributions to improving this benchmark are welcome. You can for instance prop If you use `qpbenchmark` in your scientific works, please cite it *e.g.* as follows: ```bibtex -@software{qpbenchmark_2023, +@software{qpbenchmark2023, author = {Caron, Stéphane and Zaki, Akram and Otta, Pavel and Arnström, Daniel and Carpentier, Justin}, license = {Apache-2.0}, - month = nov, + month = dec, title = {{qpbenchmark: Benchmark for quadratic programming solvers available in Python}}, url = {https://github.com/qpsolvers/qpbenchmark}, - version = {1.2.0}, + version = {2.0.0}, year = {2023} } ``` diff --git a/qpbenchmark/version.py b/qpbenchmark/version.py index 207eb8a..d1d9ea8 100644 --- a/qpbenchmark/version.py +++ b/qpbenchmark/version.py @@ -20,4 +20,4 @@ def get_version() -> str: """Get benchmark version as a string.""" - return "1.2.0" + return "2.0.0"