Changes between Version 38 and Version 39 of ReleaseProcedure
- Timestamp:
- Nov 3, 2008, 3:55:47 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ReleaseProcedure
v38 v39 81 81 below line 82 82 {{{ 83 m4_define([LT_VERSION], [c:r:a]) 83 m4_define([YAT_LT_CURRENT], [c]) 84 m4_define([YAT_LT_REVISION], [r]) 85 m4_define([YAT_LT_AGE], [a]) 84 86 }}} 85 87 appropriately. Refer to the interface version list in `build_support/version.m4` to figure out the settings of c, r, and a. c should increase with 1 if the interface has changed. If the interface is changed, r should be set to zero and a should be set to reflect backward compatibility level of this version. If interface was not changed just increase r with 1. See `build_support/version.m4` and the [http://www.gnu.org/software/libtool/manual/html_node/Versioning.html#Versioning libtool manual] for details.[[br]][[br]] … … 191 193 {{{ 192 194 svn switch http://dev.thep.lu.se/yat/svn/trunk 195 193 196 }}} 194 197 or … … 315 318 below line 316 319 {{{ 317 m4_define([ LT_VERSION], [c:r+1:a])320 m4_define([YAT_LT_REVISION], [r+1]) 318 321 }}} 319 322 i.e., only raise the revision number since the interface was not changed. See the [http://www.gnu.org/software/libtool/manual/html_node/Versioning.html#Versioning libtool manual] for details.[[br]][[br]]