File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,11 +10,33 @@ jobs:
1010 runs-on : ${{ matrix.os }}
1111 strategy :
1212 matrix :
13- os : [ubuntu-16.04, ubuntu-18.04, ubuntu-latest, macos-latest ]
13+ os : [ubuntu-16.04, ubuntu-18.04, ubuntu-latest]
1414 env :
1515 DO_DOCKER : 0
1616 steps :
1717 - uses : actions/checkout@v2
18+ - uses : egor-tensin/setup-clang@v1
19+ - uses : actions-rs/toolchain@v1
20+ with :
21+ profile : minimal
22+ toolchain : stable
23+ override : true
24+ - uses : actions-rs/cargo@v1
25+ with :
26+ command : test
27+ - uses : actions/setup-python@v2
28+ with :
29+ python-version : ' 3.x'
30+ architecture : ' x64'
31+ - run : bash ./ci/script.sh
32+
33+ ci_macos :
34+ runs-on : macos-latest
35+ env :
36+ DO_DOCKER : 0
37+ steps :
38+ - uses : actions/checkout@v2
39+ - run : brew install llvm
1840 - uses : actions-rs/toolchain@v1
1941 with :
2042 profile : minimal
Original file line number Diff line number Diff line change @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77
88Note: This is the Changelog file of ` opengen ` - the Python interface of OpEn
99
10+ ## [ 0.6.5] - 2020-10-21
11+
12+ ### Changed
13+
14+ * Include ` VERSION ` file in ` MANIFEST.in ` (included in Python package)
15+
16+
1017
1118## [ 0.6.4] - 2020-10-21
1219
@@ -18,7 +25,7 @@ Note: This is the Changelog file of `opengen` - the Python interface of OpEn
1825
1926* List of authors in ` Cargo.toml ` is generated properly
2027
21- # Changed
28+ ### Changed
2229
2330* ` enable_tcp_interface ` previously gave a ` DeprecationWarning ` ; now it raises it. In a future version, it will be removed.
2431
@@ -92,8 +99,9 @@ Note: This is the Changelog file of `opengen` - the Python interface of OpEn
9299* Project-specific ` tcp_iface ` TCP interface
93100* Fixed ` lbfgs ` typo
94101
95- [ 0.6.2 ] : https://github.com/alphaville/optimization-engine/compare/opengen-0.6.3...opengen-0.6.4
96- [ 0.6.2 ] : https://github.com/alphaville/optimization-engine/compare/opengen-0.6.2...opengen-0.6.3
102+ [ 0.6.5 ] : https://github.com/alphaville/optimization-engine/compare/opengen-0.6.4...opengen-0.6.5
103+ [ 0.6.4 ] : https://github.com/alphaville/optimization-engine/compare/opengen-0.6.3...opengen-0.6.4
104+ [ 0.6.3 ] : https://github.com/alphaville/optimization-engine/compare/opengen-0.6.2...opengen-0.6.3
97105[ 0.6.2 ] : https://github.com/alphaville/optimization-engine/compare/opengen-0.6.1...opengen-0.6.2
98106[ 0.6.1 ] : https://github.com/alphaville/optimization-engine/compare/opengen-v0.6.0...opengen-0.6.1
99107[ 0.6.0 ] : https://github.com/alphaville/optimization-engine/compare/opengen-v0.5.0...opengen-0.6.0
Original file line number Diff line number Diff line change @@ -2,3 +2,5 @@ include opengen/templates/*
22include opengen/templates/**/*
33include opengen/icasadi/*
44include opengen/icasadi/**/*
5+ include VERSION
6+
Original file line number Diff line number Diff line change 1- 0.6.4
1+ 0.6.5
You can’t perform that action at this time.
0 commit comments