From 17715d29480f1443114265f9c79679e0b18315bf Mon Sep 17 00:00:00 2001 From: Ron <45816308+rjaegers@users.noreply.github.com> Date: Wed, 21 Jun 2023 20:26:57 +0200 Subject: [PATCH] chore(main): release 1.0.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 12 +++++++++++- CMakeLists.txt | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 37fcefa..8d7e5f1 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.0.0" + ".": "1.0.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 6140ea3..d79093f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,14 @@ -# CHANGELOG +# Changelog + +## [1.0.1](https://github.com/philips-software/amp-preview/compare/v1.0.0...v1.0.1) (2023-06-21) + + +### Bug Fixes + +* Correctly apply bounding regions to drawing bitmaps and icons ([#21](https://github.com/philips-software/amp-preview/issues/21)) ([797f9e2](https://github.com/philips-software/amp-preview/commit/797f9e2f9ddb663402a2dc39a63c466a9844512f)) +* Move NOMINMAX definition from examples/clicking_scrolling/MainWin to CMakeLists ([#18](https://github.com/philips-software/amp-preview/issues/18)) ([654e754](https://github.com/philips-software/amp-preview/commit/654e7547f2cc7636bb0633dd7d41a0a6f543cc88)) + +## CHANGELOG All notable changes to this project will be documented in this file. diff --git a/CMakeLists.txt b/CMakeLists.txt index 399b7fa..645a44c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -37,7 +37,7 @@ if (PREVIEW_STANDALONE) endif() endif() -project(preview LANGUAGES C CXX VERSION 1.0.0) # x-release-please-version +project(preview LANGUAGES C CXX VERSION 1.0.1) # x-release-please-version set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED On)