Skip to content

Commit 485a17f

Browse files
authored
Merge pull request #4 from scipopt/prep-v100
Prepare release of version 1.0.0
2 parents c78e798 + 207645a commit 485a17f

File tree

3 files changed

+8
-11
lines changed

3 files changed

+8
-11
lines changed

changelog.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
44

55
## [Unreleased] - [Doc:Unreleased]
66

7-
## [1.0.0] - 2023-07-XX
7+
## [1.0.0] - 2023-08-09
88

9-
[Doc:Unreleased]: TODOURLGITHUBPAGES
9+
Initial release
10+
11+
[Doc:Unreleased]: https://scipopt.github.io/SCIPpp/
1012
[Unreleased]: https://github.com/scipopt/SCIPpp
11-
[1.0.0]: TODOURLRELEASE100
13+
[1.0.0]: https://github.com/scipopt/SCIPpp/releases/tag/1.0.0

conanfile.py

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from conan import ConanFile
22
from conan.tools.cmake import CMake, CMakeToolchain, cmake_layout
3-
from conan.tools.scm import Git
43

54

65
class ScipPlusPlus(ConanFile):
@@ -14,15 +13,10 @@ class ScipPlusPlus(ConanFile):
1413
default_options = {
1514
"with_tests": False,
1615
}
17-
_full_version: str = None
16+
_full_version: str = "1.0.0"
1817

1918
def set_version(self):
20-
git = Git(self, folder=self.recipe_folder)
21-
try:
22-
self._full_version = git.run("describe --tags --dirty=-d").strip()
23-
self.version = self._full_version.split('-')[0]
24-
except:
25-
self.version = "0.0.0"
19+
self.version = self._full_version
2620

2721
def layout(self):
2822
cmake_layout(self)

readme.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
![CI Status](https://github.com/scipopt/SCIPpp/actions/workflows/main.yml/badge.svg)
44
[![Coverage](https://img.shields.io/codecov/c/github/scipopt/SCIPpp)](https://app.codecov.io/github/scipopt/SCIPpp)
55
[![Doxygen](https://img.shields.io/badge/documentation-Doxygen-blue)](https://scipopt.github.io/SCIPpp/)
6+
[![Conan Center](https://img.shields.io/conan/v/scippp)](https://conan.io/center/recipes/scippp)
67

78
SCIP++ is a C++ wrapper for SCIP's C interface.
89
It automatically manages the memory, and provides a simple interface to create linear expressions and inequalities.

0 commit comments

Comments
 (0)