Updated changelog for upcoming version 0.6.3

This commit is contained in:
Filippo Cucchetto 2017-04-22 15:45:33 +02:00
parent 6c07146440
commit f5bb30f78d
3 changed files with 13 additions and 1 deletions

View File

@ -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 # Version 0.6.2
* Updated appveyor packages by adding 5.8 and removing 5.5 and 5.6 * Updated appveyor packages by adding 5.8 and removing 5.5 and 5.6

View File

@ -38,7 +38,7 @@ PROJECT_NAME = "DOtherSide"
# could be handy for archiving the generated documentation or if some version # could be handy for archiving the generated documentation or if some version
# control system is used. # 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 # 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 # for a project that appears at the top of each page and should give viewer a

View File

@ -43,9 +43,15 @@ set(SRC_LIST
include_directories(include include/Qt) include_directories(include include/Qt)
set(major 0)
set(minor 6)
set(patch 3)
# Shared version for distributing # Shared version for distributing
add_library(${PROJECT_NAME} SHARED ${SRC_LIST} ${HEADERS_LIST}) add_library(${PROJECT_NAME} SHARED ${SRC_LIST} ${HEADERS_LIST})
set_property(TARGET ${PROJECT_NAME} PROPERTY CXX_STANDARD 11) 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) target_link_libraries(${PROJECT_NAME} PRIVATE Qt5::Core Qt5::Gui Qt5::Widgets Qt5::Qml Qt5::Quick)
# Static version for testing # Static version for testing