Skip to content

Commit 78ecb0a

Browse files
author
Remigiusz Kołłątaj
committed
Version 0.4.0
Signed-off-by: Remigiusz Kołłątaj <[email protected]>
1 parent d93dbe5 commit 78ecb0a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.travis_doxygen.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ if [ -d "html" ] && [ -f "html/index.html" ]; then
8181

8282
# Commit the added files with a title and description containing the Travis CI
8383
# build number and the GitHub commit reference that issued this build.
84-
git commit -m "Deploy code docs to GitHub Pages Travis build: ${TRAVIS_BUILD_NUMBER}" -m "Commit: ${TRAVIS_COMMIT}"
84+
git commit --allow-empty -m "Deploy code docs to GitHub Pages Travis build: ${TRAVIS_BUILD_NUMBER}" -m "Commit: ${TRAVIS_COMMIT}"
8585

8686
# Force push to the remote gh-pages branch.
8787
# The ouput is redirected to /dev/null to hide any sensitive credential data

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.0.0)
33
project(CANdevStudio CXX)
44

55
set(VERSION_MAJOR 0)
6-
set(VERSION_MINOR 3)
6+
set(VERSION_MINOR 4)
77
set(VERSION_PATCH 0)
88

99
set(CMAKE_INCLUDE_CURRENT_DIR ON)

src/common/version.h.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef VERSION_H
22
#define VERSION_H
33

4-
#define CDS_VERSION "@VERSION_MAJOR@.@VERSION_MINOR@"
4+
#define CDS_VERSION "@VERSION_MAJOR@.@VERSION_MINOR@.@VERSION_PATCH@"
55
#define GIT_BRANCH "@GIT_BRANCH@"
66
#define GIT_COMMIT_HASH "@GIT_COMMIT_HASH@"
77

0 commit comments

Comments
 (0)