From 1914b8ea972251d3bb49a33828497dde683205d9 Mon Sep 17 00:00:00 2001 From: Andy Maloney Date: Tue, 28 Nov 2023 06:48:53 -0500 Subject: [PATCH] Fix library version in CMakeLists.txt --- CHANGELOG.md | 6 ++++++ CMakeLists.txt | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 04208ac..a59c0c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.1.1](https://github.com/asmaloney/libE57Format/releases/tag/v3.1.1) - 2023-11-28 + +### Fixed + +- Fix library version in CMakeLists.txt. (Thanks Olli!) + ## [3.1.0](https://github.com/asmaloney/libE57Format/releases/tag/v3.1.0) - 2023-11-20 ### Added diff --git a/CMakeLists.txt b/CMakeLists.txt index 41c41f7..9a28899 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -41,7 +41,7 @@ project( E57Format LANGUAGES CXX VERSION - 3.0.2 + 3.1.1 ) string( TOUPPER ${PROJECT_NAME} PROJECT_NAME_UPPERCASE )