From 4166d0cccfc059b39d5ecfc372524375e59448f9 Mon Sep 17 00:00:00 2001 From: sammycage Date: Thu, 22 Aug 2024 18:54:38 +0100 Subject: [PATCH] Release v2.4.1 --- CMakeLists.txt | 2 +- README.md | 2 +- include/lunasvg.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e19d67c..3565911 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.5) -project(lunasvg VERSION 2.4.0 LANGUAGES CXX C) +project(lunasvg VERSION 2.4.1 LANGUAGES CXX C) set(CMAKE_CXX_STANDARD 11) set(CMAKE_C_STANDARD 11) diff --git a/README.md b/README.md index c6489a3..c757c36 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Releases](https://img.shields.io/badge/Version-2.3.9-orange.svg)](https://github.com/sammycage/lunasvg/releases) +[![Releases](https://img.shields.io/badge/Version-2.4.1-orange.svg)](https://github.com/sammycage/lunasvg/releases) [![License](https://img.shields.io/badge/License-MIT-blue.svg)](https://github.com/sammycage/lunasvg/blob/master/LICENSE) [![Build Status](https://github.com/sammycage/lunasvg/actions/workflows/ci.yml/badge.svg)](https://github.com/sammycage/lunasvg/actions) diff --git a/include/lunasvg.h b/include/lunasvg.h index a08a3ee..728030a 100644 --- a/include/lunasvg.h +++ b/include/lunasvg.h @@ -47,7 +47,7 @@ #define LUNASVG_VERSION_MAJOR 2 #define LUNASVG_VERSION_MINOR 4 -#define LUNASVG_VERSION_MICRO 0 +#define LUNASVG_VERSION_MICRO 1 #define LUNASVG_VERSION_ENCODE(major, minor, micro) (((major) * 10000) + ((minor) * 100) + ((micro) * 1)) #define LUNASVG_VERSION LUNASVG_VERSION_ENCODE(LUNASVG_VERSION_MAJOR, LUNASVG_VERSION_MINOR, LUNASVG_VERSION_MICRO)