diff --git a/CHANGES.md b/CHANGES.md index af613bf0..10eaf904 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -9,18 +9,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added -- Enable -faligned-new when CCTAG_EIGEN_MEMORY_ALIGNMENT is set on GCC >= 7.1 [PR](https://github.com/alicevision/CCTag/pull/193) +### Changed + +### Fixed + +### Removed + +## [1.0.3] - 2022-10-18 + +### Added + +- Enable `-faligned-new` when `CCTAG_EIGEN_MEMORY_ALIGNMENT` is set on GCC >= 7.1 [PR](https://github.com/alicevision/CCTag/pull/193) ### Changed -- Replaced CCTAG_EIGEN_MEMORY_ALIGNMENT with CCTAG_EIGEN_MEMORY_ALIGNMENT which has the opposite meaning. +- Replaced `CCTAG_EIGEN_MEMORY_ALIGNMENT` with `CCTAG_EIGEN_MEMORY_ALIGNMENT` which has the opposite meaning. - Using the new TBB oneAPI interface, this breaks compatibility with previous versions of TBB [PR](https://github.com/alicevision/CCTag/pull/200) ### Fixed - fix gcc11 ordered pointer comparison [PR](https://github.com/alicevision/CCTag/pull/191) -- fix handling of BUILD_SHARED_LIBS option [PR](https://github.com/alicevision/CCTag/pull/201) - -### Removed +- fix handling of `BUILD_SHARED_LIBS` option [PR](https://github.com/alicevision/CCTag/pull/201) ## [1.0.2] - 2022-07-14 diff --git a/CMakeLists.txt b/CMakeLists.txt index 1afe6628..2425e45a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.13) include(ExternalProject) -project(CCTag VERSION 1.0.2 LANGUAGES C CXX) +project(CCTag VERSION 1.0.3 LANGUAGES C CXX) # Set build path as a folder named as the platform (linux, windows, darwin...) plus the processor type set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}/${CMAKE_SYSTEM_NAME}-${CMAKE_SYSTEM_PROCESSOR}")