File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ if [ -d "html" ] && [ -f "html/index.html" ]; then
81
81
82
82
# Commit the added files with a title and description containing the Travis CI
83
83
# 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} "
85
85
86
86
# Force push to the remote gh-pages branch.
87
87
# The ouput is redirected to /dev/null to hide any sensitive credential data
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.0.0)
3
3
project (CANdevStudio CXX)
4
4
5
5
set (VERSION_MAJOR 0)
6
- set (VERSION_MINOR 3 )
6
+ set (VERSION_MINOR 4 )
7
7
set (VERSION_PATCH 0)
8
8
9
9
set (CMAKE_INCLUDE_CURRENT_DIR ON )
Original file line number Diff line number Diff line change 1
1
#ifndef VERSION_H
2
2
#define VERSION_H
3
3
4
- #define CDS_VERSION "@VERSION_MAJOR@.@VERSION_MINOR@"
4
+ #define CDS_VERSION "@VERSION_MAJOR@.@VERSION_MINOR@.@VERSION_PATCH@ "
5
5
#define GIT_BRANCH "@GIT_BRANCH@"
6
6
#define GIT_COMMIT_HASH "@GIT_COMMIT_HASH@"
7
7
You can’t perform that action at this time.
0 commit comments