Skip to content

Commit

Permalink
Merge branch 'chore/cut-1.8.0' into 'master'
Browse files Browse the repository at this point in the history
chore: cut 1.8.0 release

See merge request multicore/drace!141
  • Loading branch information
fmoessbauer committed Jul 2, 2020
2 parents b22ab97 + 593b4f2 commit c9faba6
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 5 deletions.
39 changes: 39 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,42 @@
#### 1.8.0 (2020-07-02)

##### Chores

* cut 1.8.0 release ([69b45db7](https://github.com/siemens/drace/commit/69b45db702d44259df0058fb2e3f5a465e196e37))
* install example source files ([6fce47cf](https://github.com/siemens/drace/commit/6fce47cf4b682bb5321f7fe07307dff8c02db030))
* create directory to fix copy of a single file on msbuild ([965d4d2b](https://github.com/siemens/drace/commit/965d4d2b4f48644e050bafbb43d0d7c2ced3c3ac))
* fix copy of prebuild dlls when using msbuild generator ([3da53c0f](https://github.com/siemens/drace/commit/3da53c0faef2abf468703d86ad111a52ae44c4f3))
* assert when using msbuild and no build type is set ([201f28b3](https://github.com/siemens/drace/commit/201f28b32167e4277d649ab1b14a4e29c7d1aede))

##### Documentation Changes

* fix orthographic typo ([2d1ca493](https://github.com/siemens/drace/commit/2d1ca4934a7bb2651a10d6cf3d8b7c0d6a23e7dd))
* adjust orthographic typos and semantics ([1dd8e1ec](https://github.com/siemens/drace/commit/1dd8e1ec90a2f6f23abf2537906de52442ac13c1))
* move documentation for submodule dependencies ([a400dd37](https://github.com/siemens/drace/commit/a400dd3741fd0da66b084a8b1c8c5072b55be67f))

##### New Features

* display symbol info on static variables in xml sink and HTML report ([04c31ec6](https://github.com/siemens/drace/commit/04c31ec695663d9dc9c053373f591ff78fed6bce))
* implement source directories input option for Report Converter ([4191f7c8](https://github.com/siemens/drace/commit/4191f7c882a3222bfaa8d63baddd04f509e55608))
* issue a warning on low memory ([5d3a2002](https://github.com/siemens/drace/commit/5d3a2002713f399600f1b4bb9324c3acb623fc97))

##### Bug Fixes

* adjust discrepancy between execution syntax and loaded path for DynamoRIO ([106e2112](https://github.com/siemens/drace/commit/106e2112615de7dd952eae68f722744b102c3016))
* implement appropriate execution syntax generated by the GUI ([4574f593](https://github.com/siemens/drace/commit/4574f5936355af145c4b7da5870f487af7922718))

##### Other Changes

* add source directories ([8aa5d21f](https://github.com/siemens/drace/commit/8aa5d21f93789f605b290aae2a161b9e4ac73b4a))

##### Refactors

* use single quotes instead of double in report converter args for consistency with base cmd ([7a3ca0ea](https://github.com/siemens/drace/commit/7a3ca0eaafff5486d59bae88e3b4b725264ddae7))

##### Tests

* generate race on static variable ([20bda014](https://github.com/siemens/drace/commit/20bda014ab4c83918d73bc3504a06050cdd7c6be))

#### 1.7.1 (2020-05-08)

##### Chores
Expand Down
6 changes: 4 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,8 @@ if(Doxygen_FOUND)
endif()
endif()

# make sure we have a doc directory
install(DIRECTORY DESTINATION ${DRACE_DOC_DEST})
# install config readme
install(FILES "README.md" DESTINATION ${DRACE_DOC_DEST})
install(FILES ${LIC_FILE} DESTINATION ${DRACE_DOC_DEST})
install(FILES "README.md" DESTINATION .)
install(FILES ${LIC_FILE} DESTINATION .)
2 changes: 1 addition & 1 deletion common/version/version.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
* git tag and commit hash to the binary.
*/

static const char* DRACE_BUILD_VERSION = "1.7.x (git)";
static const char* DRACE_BUILD_VERSION = "1.8.x (git)";
static const char* DRACE_BUILD_HASH = "@GIT_HEAD_SHA1@";
4 changes: 2 additions & 2 deletions contrib/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "drace",
"version": "1.7.1",
"version": "1.8.0",
"description": "Data-race detector for windows applications build on top of DynamoRIO",
"directories": {
"test": "test"
},
"dependencies": {
"generate-changelog": "^1.7.1"
"generate-changelog": "^1.8.0"
},
"devDependencies": {},
"repository": {
Expand Down

0 comments on commit c9faba6

Please sign in to comment.