Skip to content

Commit f26601b

Browse files
committed
now working on v0.6.0
1 parent 2adb4c5 commit f26601b

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

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.5.5], [[email protected]])
10+
AC_INIT([cglm], [0.6.0], [[email protected]])
1111
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects])
1212

1313
AC_CONFIG_MACRO_DIR([m4])

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

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

include/cglm/color.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,10 @@ glm_luminance(vec3 rgb) {
2323
return glm_dot(rgb, l);
2424
}
2525

26+
CGLM_INLINE
27+
void
28+
glm_normal(vec3 a, vec3 b, vec3 c, vec3 dest) {
29+
30+
}
31+
2632
#endif /* cglm_color_h */

include/cglm/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#define cglm_version_h
1010

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

1515
#endif /* cglm_version_h */

0 commit comments

Comments
 (0)