From 8facd41f473c492ca913fdea2ef435bb29217474 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Tue, 31 Mar 2020 18:48:52 +0200 Subject: [PATCH] add a changelog file and use it when publishing using gitlab api --- CHANGELOG.md | 42 ++++++++++++++++++++++++++++++++++++++++++ setup/build-release.sh | 8 ++++++-- 2 files changed, 48 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..7a2ff334 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,42 @@ +# v3.8.2 + +## Enhancements + +- Messages, added an option, enabled by default, allowing to highlight the blocks enclosed by backticks. This works for the "find all" action, the compiler output, the custom tools output, etc. (#13) + +## Bugs fixed + +- Editor, Calltips: the position of the window was incorrect when the arguments stood on several lines. (#10) +- Terminal, UI: the scrollbar lacked of accuracy. (#11) + +## Other + +- project CI: the release process is now fully automated, allowing painless and more frequent releases. + +# v3.8.1 + +# v3.8.0 + +## Enhancements + +- Compiler paths: added the "global" compiler. It allows to quickly set the compiler used whatever is the context. +- Compiler paths: the editors for LDC and GDC are less confusing now, since only one path is needed to specify the std/core paths, unlike for DMD. +- Editor, Calltips: in the call tips window, the parameter being edited is highlighted. Note that stacking of calltips in nested function calls is for now removed. +- GDB commander, editor, linux: it is now possible to inspect the variables in a tooltip window displayed when moving the mouse in the code editor. +- Messages: added support for GNU type messages. Note that the detection of the type (GNU or legacy DMD) is dynamic. +- MRUs: added an option preventing to remove non existing items, which used to be problematic when using git branches. +- Terminal, UI: added scrollbar. + +## Bugs fixed + +- Application, energy consumption: damped a small but constant CPU load, even on idle, caused by several timers. +- DUB project editor: it was possible to add a property twice. +- Editor: possible range violation when trying to rename an editor past the EOL. +- GDB Commander: no scrollbar in the variable inspector. +- Main menu: shortcuts for the tools not updated after editing the options. +- Terminal: clearing a temporary line because of automatic check dir caused a reset, clearing the backbuffer. + +## Other + +- the documentation is updated to be rendered by Gitlab CI or locally, with pandoc. +- windows binaries are not provided anymore. diff --git a/setup/build-release.sh b/setup/build-release.sh index 1a92ff81..0a281257 100644 --- a/setup/build-release.sh +++ b/setup/build-release.sh @@ -101,13 +101,17 @@ if [ ! -z "$GITLAB_CI" ]; then ZP1_NAME="dexed.$ver.linux64.setup.zip" ZP2_NAME="dexed.$ver.linux64.zip" + # read the log + LOG=$(grep -Poz "##[\s\S]*?(?=# v)" ../CHANGELOG.md) # capture all after "##" and until "# v" + LOG=$(echo "$LOG" | sed -z 's/\n/\\n/g' | sed -z 's/\"/\\"/g') + ASSET_RPM='{ "name" : "'$RPM_NAME'" , "url" : "'$LNK_BASE$RPM_NAME'" , "filepath" : "/binaries/'$RPM_NAME'" }' ASSET_DEB='{ "name" : "'$DEB_NAME'" , "url" : "'$LNK_BASE$DEB_NAME'" , "filepath" : "/binaries/'$DEB_NAME'" }' ASSET_ZP1='{ "name" : "'$ZP1_NAME'" , "url" : "'$LNK_BASE$ZP1_NAME'" , "filepath" : "/binaries/'$ZP1_NAME'" }' ASSET_ZP2='{ "name" : "'$ZP2_NAME'" , "url" : "'$LNK_BASE$ZP2_NAME'" , "filepath" : "/binaries/'$ZP2_NAME'" }' - REQ_DATA='{ "name" : "'$semver'", "tag_name": "'$semver'", "description": "changelog coming soon", "assets": { "links": [ '$ASSET_RPM' , '$ASSET_DEB' , '$ASSET_ZP1' , '$ASSET_ZP2'] } }' - + REQ_DATA='{ "name" : "'$semver'", "tag_name": "'$semver'", "description": "'$LOG'", "assets": { "links": [ '$ASSET_RPM' , '$ASSET_DEB' , '$ASSET_ZP1' , '$ASSET_ZP2'] } }' + # create Gitlab release if [ -z "$CI_MERGE_REQUEST_ID" ]; then curl -g --header 'Content-Type: application/json' \