mirror of
https://github.com/status-im/dotherside.git
synced 2025-02-11 12:06:37 +00:00
Updated changelog for upcoming version 0.6.3
This commit is contained in:
parent
6c07146440
commit
f5bb30f78d
@ -1,3 +1,9 @@
|
||||
|
||||
# Version 0.6.3
|
||||
* Added soversion and version to CMake
|
||||
* Fixed #57: Added support for QModelIndex internal pointer
|
||||
* Added support for QAbstractItemModel::hasIndex
|
||||
|
||||
# Version 0.6.2
|
||||
* Updated appveyor packages by adding 5.8 and removing 5.5 and 5.6
|
||||
|
||||
|
@ -38,7 +38,7 @@ PROJECT_NAME = "DOtherSide"
|
||||
# could be handy for archiving the generated documentation or if some version
|
||||
# control system is used.
|
||||
|
||||
PROJECT_NUMBER = 0.6.0
|
||||
PROJECT_NUMBER = 0.6.3
|
||||
|
||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
||||
# for a project that appears at the top of each page and should give viewer a
|
||||
|
@ -43,9 +43,15 @@ set(SRC_LIST
|
||||
|
||||
include_directories(include include/Qt)
|
||||
|
||||
set(major 0)
|
||||
set(minor 6)
|
||||
set(patch 3)
|
||||
|
||||
# Shared version for distributing
|
||||
add_library(${PROJECT_NAME} SHARED ${SRC_LIST} ${HEADERS_LIST})
|
||||
set_property(TARGET ${PROJECT_NAME} PROPERTY CXX_STANDARD 11)
|
||||
set_property(TARGET ${PROJECT_NAME} PROPERTY SOVERSION "${major}.${minor}")
|
||||
set_property(TARGET ${PROJECT_NAME} PROPERTY VERSION "${major}.${minor}.${patch}")
|
||||
target_link_libraries(${PROJECT_NAME} PRIVATE Qt5::Core Qt5::Gui Qt5::Widgets Qt5::Qml Qt5::Quick)
|
||||
|
||||
# Static version for testing
|
||||
|
Loading…
x
Reference in New Issue
Block a user