File tree Expand file tree Collapse file tree 3 files changed +8
-11
lines changed Expand file tree Collapse file tree 3 files changed +8
-11
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4
4
5
5
## [ Unreleased] - [ Doc: Unreleased ]
6
6
7
- ## [ 1.0.0] - 2023-07-XX
7
+ ## [ 1.0.0] - 2023-08-09
8
8
9
- [ Doc:Unreleased ] : TODOURLGITHUBPAGES
9
+ Initial release
10
+
11
+ [ Doc:Unreleased ] : https://scipopt.github.io/SCIPpp/
10
12
[ 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
Original file line number Diff line number Diff line change 1
1
from conan import ConanFile
2
2
from conan .tools .cmake import CMake , CMakeToolchain , cmake_layout
3
- from conan .tools .scm import Git
4
3
5
4
6
5
class ScipPlusPlus (ConanFile ):
@@ -14,15 +13,10 @@ class ScipPlusPlus(ConanFile):
14
13
default_options = {
15
14
"with_tests" : False ,
16
15
}
17
- _full_version : str = None
16
+ _full_version : str = "1.0.0"
18
17
19
18
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
26
20
27
21
def layout (self ):
28
22
cmake_layout (self )
Original file line number Diff line number Diff line change 3
3
![ CI Status] ( https://github.com/scipopt/SCIPpp/actions/workflows/main.yml/badge.svg )
4
4
[ ![ Coverage] ( https://img.shields.io/codecov/c/github/scipopt/SCIPpp )] ( https://app.codecov.io/github/scipopt/SCIPpp )
5
5
[ ![ 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 )
6
7
7
8
SCIP++ is a C++ wrapper for SCIP's C interface.
8
9
It automatically manages the memory, and provides a simple interface to create linear expressions and inequalities.
You can’t perform that action at this time.
0 commit comments