diff --git a/CMakeLists.txt b/CMakeLists.txt index 46166f1..2e849f5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.15) set(PLUTOVG_VERSION_MAJOR 0) set(PLUTOVG_VERSION_MINOR 0) -set(PLUTOVG_VERSION_MICRO 6) +set(PLUTOVG_VERSION_MICRO 7) project(plutovg LANGUAGES C VERSION ${PLUTOVG_VERSION_MAJOR}.${PLUTOVG_VERSION_MINOR}.${PLUTOVG_VERSION_MICRO}) diff --git a/README.md b/README.md index 50b090d..892e179 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Releases](https://img.shields.io/badge/Version-0.0.6-orange.svg)](https://github.com/sammycage/plutovg/releases) +[![Releases](https://img.shields.io/badge/Version-0.0.7-orange.svg)](https://github.com/sammycage/plutovg/releases) [![License](https://img.shields.io/badge/License-MIT-blue.svg)](https://github.com/sammycage/plutovg/blob/main/LICENSE) [![Build Status](https://github.com/sammycage/plutovg/actions/workflows/main.yml/badge.svg)](https://github.com/sammycage/plutovg/actions) [![CodeFactor](https://www.codefactor.io/repository/github/sammycage/plutovg/badge)](https://www.codefactor.io/repository/github/sammycage/plutovg) diff --git a/include/plutovg.h b/include/plutovg.h index e79d33a..e89bc1c 100644 --- a/include/plutovg.h +++ b/include/plutovg.h @@ -48,7 +48,7 @@ extern "C" { #define PLUTOVG_VERSION_MAJOR 0 #define PLUTOVG_VERSION_MINOR 0 -#define PLUTOVG_VERSION_MICRO 6 +#define PLUTOVG_VERSION_MICRO 7 #define PLUTOVG_VERSION_ENCODE(major, minor, micro) (((major) * 10000) + ((minor) * 100) + ((micro) * 1)) #define PLUTOVG_VERSION PLUTOVG_VERSION_ENCODE(PLUTOVG_VERSION_MAJOR, PLUTOVG_VERSION_MINOR, PLUTOVG_VERSION_MICRO) diff --git a/meson.build b/meson.build index 2326f7b..33583ff 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('plutovg', 'c', - version: '0.0.6', + version: '0.0.7', license: 'MIT', meson_version: '>=0.59.0', default_options: ['c_std=c99']