Skip to content

Commit da4224b

Browse files
committed
now working on v0.9.5
1 parent 1796cc5 commit da4224b

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

CMakeLists.txt

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

cglm.podspec

+1-1
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.3"
5+
s.version = "0.9.4"
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

+1-1
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.4], [[email protected]])
10+
AC_INIT([cglm], [0.9.5], [[email protected]])
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

+2-2
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.4'
65+
version = u'0.9.5'
6666
# The full version, including alpha/beta/rc tags.
67-
release = u'0.9.4'
67+
release = u'0.9.5'
6868

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

include/cglm/version.h

+1-1
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 4
13+
#define CGLM_VERSION_PATCH 5
1414

1515
#endif /* cglm_version_h */

meson.build

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

0 commit comments

Comments
 (0)