source: branches/0.17-stable/m4/version.m4 @ 3984

Last change on this file since 3984 was 3984, checked in by Peter, 3 years ago

Preparing release 0.17.2

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.6 KB
Line 
1## $Id: version.m4 3984 2020-08-26 03:56:35Z peter $
2#
3# Copyright (C) 2008, 2009 Jari Häkkinen, Peter Johansson
4# Copyright (C) 2010, 2011, 2012, 2013, 2014, 2015, 2017, 2018, 2019, 2020 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], [17], [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# yat-0.11.2 8:2:0
78# yat-0.12   9:0:0
79# yat-0.12.1 9:1:0
80# yat-0.12.2 9:2:0
81# yat-0.13   10:0:0
82# yat-0.13.1 10:1:0
83# yat-0.14   11:0:0
84# yat-0.14.1 11:1:0
85# yat-0.14.2 11:2:0
86# yat-0.14.3 11:3:0
87# yat-0.14.4 11:4:0
88# yat-0.15   12:0:0
89# yat-0.15.1 12:1:0
90# yat-0.16   13:0:0
91# yat-0.16.1 13:1:0
92# yat-0.16.2 13:2:0
93# yat-0.16.3 13:3:0
94# yat-0.17   14:0:0
95# yat-0.17.1 14:1:0
96# yat-0.17.2 14:2:0
97#
98# *Accidently, the libtool number was not updated for yat 0.5
99#
100m4_define([YAT_LT_VERSION_INFO], [14:2:0])
Note: See TracBrowser for help on using the repository browser.