diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e7ed4b..4165b08 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.15) set(LUNASVG_VERSION_MAJOR 3) set(LUNASVG_VERSION_MINOR 0) -set(LUNASVG_VERSION_MICRO 0) +set(LUNASVG_VERSION_MICRO 1) project(lunasvg LANGUAGES CXX VERSION ${LUNASVG_VERSION_MAJOR}.${LUNASVG_VERSION_MINOR}.${LUNASVG_VERSION_MICRO}) diff --git a/README.md b/README.md index 6449b49..9e42cb5 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Releases](https://img.shields.io/badge/Version-3.0.0-orange.svg)](https://github.com/sammycage/lunasvg/releases) +[![Releases](https://img.shields.io/badge/Version-3.0.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/main.yml/badge.svg)](https://github.com/sammycage/lunasvg/actions) diff --git a/include/lunasvg.h b/include/lunasvg.h index 3e062e9..9447f3c 100644 --- a/include/lunasvg.h +++ b/include/lunasvg.h @@ -47,7 +47,7 @@ #define LUNASVG_VERSION_MAJOR 3 #define LUNASVG_VERSION_MINOR 0 -#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) diff --git a/meson.build b/meson.build index d6f41c0..5535d92 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('lunasvg', 'cpp', - version: '3.0.0', + version: '3.0.1', license: 'MIT', meson_version: '>=0.59.0', default_options: ['cpp_std=c++17']