Skip to content

Commit

Permalink
Merge branch 'release_1.2.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
christophe-calmejane committed Jul 22, 2021
2 parents b9a45af + 595f759 commit 4f3803b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to Hive will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [1.2.6] - 2021-07-22
### Changed
- [Minimum required macOS version set to 10.13 (required by Qt 5.15)](https://github.com/christophe-calmejane/Hive/issues/103)

## [1.2.5] - 2021-07-21
### Added
- More color explanation in the Connection Matrix legend
Expand Down
6 changes: 2 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ cmake_minimum_required(VERSION 3.18.4)
# It should have 3 digits (x.y.z) on main branch, and 4 digits (x.y.z.w) on dev and task branches. The last digit being used as beta label.
# As soon as a new version begins, update the version number by following SemVer rules.
# Example: 1.5.0 is the upcoming release version (main branch) of current 1.5.0.3 devel version (dev/task) which will be labelled 1.5.0-beta3
set(HIVE_VERSION 1.2.5)
set(HIVE_VERSION 1.2.6)

############ Override from command line "CMake -D<OPTION>=TRUE/FALSE/0/1/ON/OFF"

Expand Down Expand Up @@ -59,9 +59,6 @@ set(CMAKE_CXX_STANDARD_REQUIRED TRUE)
# Default Component
set(CMAKE_INSTALL_DEFAULT_COMPONENT_NAME "Hive")

# Set minimum OSX version
set(CMAKE_OSX_DEPLOYMENT_TARGET 10.12 CACHE INTERNAL "Force the target to be at least a Mac OS X 10.12" FORCE)

# Enable cmake folders
set_property(GLOBAL PROPERTY USE_FOLDERS ON)

Expand Down Expand Up @@ -161,6 +158,7 @@ set(PROJECT_READABLE_COPYRIGHT "Copyright ${PROJECT_COPYRIGHT_YEAR}, ${PROJECT_A
set(PROJECT_ROOT_DIR "${PROJECT_SOURCE_DIR}")
set(HIVE_RESOURCES_FOLDER "${PROJECT_ROOT_DIR}/resources")
set(PROJECT_ARCH "32-bit")
set(CMAKE_OSX_DEPLOYMENT_TARGET 10.13 CACHE INTERNAL "Force the target to be at least a Mac OS X 10.13" FORCE)
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
set(PROJECT_ARCH "64-bit")
endif()
Expand Down

0 comments on commit 4f3803b

Please sign in to comment.