Skip to content

Commit d1c1aea

Browse files
committed
Bump version
1 parent db080cc commit d1c1aea

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#
1515
dnl Process this file with autoconf to produce a configure script
1616
AC_PREREQ([2.69])
17-
AC_INIT([libcypher-parser],[0.5.0~devel])
17+
AC_INIT([libcypher-parser],[0.5.0])
1818
AC_CONFIG_SRCDIR([src/lib/cypher-parser.h])
1919
AC_CONFIG_MACRO_DIR([m4])
2020
AM_INIT_AUTOMAKE([foreign])

src/lib/Makefile.am

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,17 @@ libcypher_parser_la_SOURCES = \
133133
vector.h
134134

135135
libcypher_parser_la_CFLAGS = $(PTHREAD_CFLAGS) $(OPENSSL_CFLAGS) -Wpedantic -Wvla
136-
libcypher_parser_la_LDFLAGS = -version-info 7:0:0
137136
libcypher_parser_la_LIBADD = $(PTHREAD_LIBS) $(OPENSSL_LIBS) $(LIBM)
137+
# Updating the version-info:
138+
# 1. If the library source code has changed at all since the last update, then
139+
# increment revision (‘c:r:a’ becomes ‘c:r+1:a’).
140+
# 2. If any interfaces have been added, removed, or changed since the last
141+
# update, increment current, and set revision to 0.
142+
# 3. If any interfaces have been added since the last public release, then
143+
# increment age.
144+
# 4. If any interfaces have been removed or changed since the last public
145+
# release, then set age to 0.
146+
libcypher_parser_la_LDFLAGS = -version-info 8:0:0
138147

139148
parser.c: parser_leg.c
140149
quick_parser.c: quick_parser_leg.c

0 commit comments

Comments
 (0)