source: branches/0.11-stable/m4/version.m4 @ 3184

Last change on this file since 3184 was 3184, checked in by Peter, 9 years ago

Preparing release 0.11.2

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.1 KB
Line 
1## $Id: version.m4 3184 2014-03-25 07:32:59Z peter $
2#
3# Copyright (C) 2008, 2009 Jari Häkkinen, Peter Johansson
4# Copyright (C) 2010, 2011, 2012, 2013 Peter Johansson
5#
6# This file is part of the yat library, http://dev.thep.lu.se/yat
7#
8# The yat library is free software; you can redistribute it
9# and/or modify it under the terms of the GNU General Public License as
10# published by the Free Software Foundation; either version 3 of the
11# License, or (at your option) any later version.
12#
13# The yat library is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16# General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with yat. If not, see <http://www.gnu.org/licenses/>.
20#
21
22#
23# Set version numbers, see http://apr.apache.org/versioning.html
24#
25
26m4_include([m4/my_version.m4])
27
28MY_VERSION_early([0], [11], [2], [false])
29
30# Library versioning (current:revision:age)
31#
32# How to update library version number
33#
34# current: Increment if the interface has additions, changes, removals.
35#
36# revision: Increment any time the source changes; set to 0 if you
37# incremented 'current'.
38#
39# age: Increment if any interfaces have been added; set to 0 if any
40# interfaces have been removed. removal has precedence over adding, so
41# set to 0 if both happened.
42#
43# See the libtool manual for further explanation of the numbers
44#
45# yat-0.3    undefined
46# yat-0.4    1:0:0
47# yat-0.4.1  1:0:0
48# yat-0.4.2  1:1:0
49# yat-0.4.3  1:2:0
50# yat-0.5    1:2:0*
51# yat-0.5.1  2:0:0
52# yat-0.5.2  2:1:0
53# yat-0.5.3  2:2:0
54# yat-0.5.4  2:3:0
55# yat-0.5.5  2:4:0
56# yat-0.5.6  2:5:0
57# yat-0.6    3:0:0
58# yat-0.6.1  3:1:0
59# yat-0.6.2  3:2:0
60# yat-0.6.3  3:3:0
61# yat-0.7    4:0:0
62# yat-0.7.1  4:1:0
63# yat-0.7.2  4:2:0
64# yat-0.7.3  4:3:0
65# yat-0.8    5:0:0
66# yat-0.8.1  5:1:0
67# yat-0.8.2  5:2:0
68# yat-0.9    6:0:0
69# yat-0.9.1  6:1:0
70# yat-0.9.2  6:2:0
71# yat-0.10   7:0:0
72# yat-0.10.1 7:1:0
73# yat-0.10.2 7:2:0
74# yat-0.10.3 7:3:0
75# yat-0.11   8:0:0
76# yat-0.11.1 8:1:0
77#
78# *Accidently, the libtool number was not updated for yat 0.5
79#
80m4_define([YAT_LT_VERSION_INFO], [8:2:0])
Note: See TracBrowser for help on using the repository browser.