Skip to content

Commit a805f73

Browse files
committed
Release v3.2.0
1 parent 8b8a1dd commit a805f73

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
cmake_minimum_required(VERSION 3.15)
22

33
set(LUNASVG_VERSION_MAJOR 3)
4-
set(LUNASVG_VERSION_MINOR 1)
5-
set(LUNASVG_VERSION_MICRO 1)
4+
set(LUNASVG_VERSION_MINOR 2)
5+
set(LUNASVG_VERSION_MICRO 0)
66

77
project(lunasvg LANGUAGES CXX VERSION ${LUNASVG_VERSION_MAJOR}.${LUNASVG_VERSION_MINOR}.${LUNASVG_VERSION_MICRO})
88

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Releases](https://img.shields.io/badge/Version-3.1.1-orange.svg)](https://github.com/sammycage/lunasvg/releases)
1+
[![Releases](https://img.shields.io/badge/Version-3.2.0-orange.svg)](https://github.com/sammycage/lunasvg/releases)
22
[![License](https://img.shields.io/badge/License-MIT-blue.svg)](https://github.com/sammycage/lunasvg/blob/master/LICENSE)
33
[![Build Status](https://github.com/sammycage/lunasvg/actions/workflows/main.yml/badge.svg)](https://github.com/sammycage/lunasvg/actions)
44

include/lunasvg.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@
4646
#endif
4747

4848
#define LUNASVG_VERSION_MAJOR 3
49-
#define LUNASVG_VERSION_MINOR 1
50-
#define LUNASVG_VERSION_MICRO 1
49+
#define LUNASVG_VERSION_MINOR 2
50+
#define LUNASVG_VERSION_MICRO 0
5151

5252
#define LUNASVG_VERSION_ENCODE(major, minor, micro) (((major) * 10000) + ((minor) * 100) + ((micro) * 1))
5353
#define LUNASVG_VERSION LUNASVG_VERSION_ENCODE(LUNASVG_VERSION_MAJOR, LUNASVG_VERSION_MINOR, LUNASVG_VERSION_MICRO)

meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project('lunasvg', 'cpp',
2-
version: '3.1.1',
2+
version: '3.2.0',
33
license: 'MIT',
44
meson_version: '>=0.59.0',
55
default_options: ['cpp_std=c++17']

0 commit comments

Comments
 (0)