From c348646629693427d808a19fc450b5ad5eebb2e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Caron?= Date: Tue, 16 Jan 2024 15:13:46 +0100 Subject: [PATCH] Release v2.2.0 --- CHANGELOG.md | 5 +++++ CITATION.cff | 4 ++-- README.md | 8 ++++---- qpbenchmark/version.py | 2 +- 4 files changed, 12 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0085df3..6cc8397 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,8 +6,13 @@ All notable changes to this project will be documented in this file. ### Added +* Distribute [on conda-forge](https://anaconda.org/conda-forge/qpbenchmark) * Test set path argument to the main function of the command-line interface +### Changed + +* Update environment file to install from conda-forge + ## [2.1.1] - 2023-12-22 ### Changed diff --git a/CITATION.cff b/CITATION.cff index 9c3854b..694fd32 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: 2.1.1 -date-released: 2023-12-22 +version: 2.2.0 +date-released: 2024-01-16 url: "https://github.com/qpsolvers/qpbenchmark" license: "Apache-2.0" authors: diff --git a/README.md b/README.md index 0ca8d78..6be67a8 100644 --- a/README.md +++ b/README.md @@ -133,14 +133,14 @@ 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{qpbenchmark2023, +@software{qpbenchmark2024, author = {Caron, Stéphane and Zaki, Akram and Otta, Pavel and Arnström, Daniel and Carpentier, Justin}, license = {Apache-2.0}, - month = dec, + month = jan, title = {{qpbenchmark: Benchmark for quadratic programming solvers available in Python}}, url = {https://github.com/qpsolvers/qpbenchmark}, - version = {2.1.1}, - year = {2023} + version = {2.2.0}, + year = {2024} } ``` diff --git a/qpbenchmark/version.py b/qpbenchmark/version.py index 65ae5f1..a157229 100644 --- a/qpbenchmark/version.py +++ b/qpbenchmark/version.py @@ -9,4 +9,4 @@ def get_version() -> str: """Get benchmark version as a string.""" - return "2.2.0rc0" + return "2.2.0"