Skip to content

Commit 643700c

Browse files
committed
now working on v0.9.6
1 parent fb4eac2 commit 643700c

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.13)
22
project(cglm
3-
VERSION 0.9.5
3+
VERSION 0.9.6
44
HOMEPAGE_URL https://github.com/recp/cglm
55
DESCRIPTION "OpenGL Mathematics (glm) for C"
66
LANGUAGES C

cglm.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Pod::Spec.new do |s|
22

33
# Description
44
s.name = "cglm"
5-
s.version = "0.9.4"
5+
s.version = "0.9.5"
66
s.summary = "📽 Highly Optimized Graphics Math (glm) for C"
77
s.description = <<-DESC
88
cglm is math library for graphics programming for C. See the documentation or README for all features.

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#*****************************************************************************
88

99
AC_PREREQ([2.69])
10-
AC_INIT([cglm], [0.9.5], [info@recp.me])
10+
AC_INIT([cglm], [0.9.6], [info@recp.me])
1111
AM_INIT_AUTOMAKE([-Wall foreign subdir-objects serial-tests])
1212

1313
# Don't use the default cflags (-O2 -g), we set ours manually in Makefile.am.

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@
6262
# built documents.
6363
#
6464
# The short X.Y version.
65-
version = u'0.9.5'
65+
version = u'0.9.6'
6666
# The full version, including alpha/beta/rc tags.
67-
release = u'0.9.5'
67+
release = u'0.9.6'
6868

6969
# The language for content autogenerated by Sphinx. Refer to documentation
7070
# for a list of supported languages.

include/cglm/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010

1111
#define CGLM_VERSION_MAJOR 0
1212
#define CGLM_VERSION_MINOR 9
13-
#define CGLM_VERSION_PATCH 5
13+
#define CGLM_VERSION_PATCH 6
1414

1515
#endif /* cglm_version_h */

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project('cglm', 'c',
2-
version : '0.9.5',
2+
version : '0.9.6',
33
license : 'mit',
44
default_options : [
55
'c_std=c11',

0 commit comments

Comments
 (0)