From eed37b45ddf00ede38ddaffda2817f6ae06167cb Mon Sep 17 00:00:00 2001 From: Samuel Ugochukwu Date: Mon, 23 Dec 2024 17:19:35 +0100 Subject: [PATCH] Release v3.1.0 --- CMakeLists.txt | 4 ++-- README.md | 2 +- include/lunasvg.h | 4 ++-- meson.build | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4165b08..faa3e00 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,8 +1,8 @@ cmake_minimum_required(VERSION 3.15) set(LUNASVG_VERSION_MAJOR 3) -set(LUNASVG_VERSION_MINOR 0) -set(LUNASVG_VERSION_MICRO 1) +set(LUNASVG_VERSION_MINOR 1) +set(LUNASVG_VERSION_MICRO 0) project(lunasvg LANGUAGES CXX VERSION ${LUNASVG_VERSION_MAJOR}.${LUNASVG_VERSION_MINOR}.${LUNASVG_VERSION_MICRO}) diff --git a/README.md b/README.md index a93b052..3beede8 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Releases](https://img.shields.io/badge/Version-3.0.1-orange.svg)](https://github.com/sammycage/lunasvg/releases) +[![Releases](https://img.shields.io/badge/Version-3.1.0-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/main.yml/badge.svg)](https://github.com/sammycage/lunasvg/actions) diff --git a/include/lunasvg.h b/include/lunasvg.h index a76eba5..b0bb026 100644 --- a/include/lunasvg.h +++ b/include/lunasvg.h @@ -46,8 +46,8 @@ #endif #define LUNASVG_VERSION_MAJOR 3 -#define LUNASVG_VERSION_MINOR 0 -#define LUNASVG_VERSION_MICRO 1 +#define LUNASVG_VERSION_MINOR 1 +#define LUNASVG_VERSION_MICRO 0 #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) diff --git a/meson.build b/meson.build index 5535d92..ddbba85 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('lunasvg', 'cpp', - version: '3.0.1', + version: '3.1.0', license: 'MIT', meson_version: '>=0.59.0', default_options: ['cpp_std=c++17']