From 50689060b398ee34c5c41966e7b8daf6e18dbf8c Mon Sep 17 00:00:00 2001 From: Ivo Hedtke Date: Thu, 18 Dec 2025 15:27:27 +0100 Subject: [PATCH] Prepare version 1.4.0 --- changelog.md | 5 ++++- conanfile.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index f778d895..5d10f554 100644 --- a/changelog.md +++ b/changelog.md @@ -4,6 +4,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - [Doc:Unreleased] +## [1.4.0] - 2025-12-18 + ### Added - [PR41](https://github.com/scipopt/SCIPpp/pull/41) Basic support of IIS extraction via `Model::generateIIS`. @@ -106,7 +108,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Initial release [Doc:Unreleased]: https://scipopt.github.io/SCIPpp/ -[Unreleased]: https://github.com/scipopt/SCIPpp/compare/1.3.0...main +[Unreleased]: https://github.com/scipopt/SCIPpp/compare/1.4.0...main +[1.4.0]: https://github.com/scipopt/SCIPpp/releases/tag/1.4.0 [1.3.0]: https://github.com/scipopt/SCIPpp/releases/tag/1.3.0 [1.2.0]: https://github.com/scipopt/SCIPpp/releases/tag/1.2.0 [1.1.0]: https://github.com/scipopt/SCIPpp/releases/tag/1.1.0 diff --git a/conanfile.py b/conanfile.py index 146fd0e4..28228a48 100644 --- a/conanfile.py +++ b/conanfile.py @@ -67,7 +67,7 @@ def set_version(self): try: self.version = git.run("describe --tags --dirty=-d").strip() except: - self.version = "1.3.0" + self.version = "1.4.0" def layout(self): cmake_layout(self)