Message ID | 20170113135036.9506-1-maxim.uvarov@linaro.org |
---|---|
State | Superseded |
Headers | show |
subject: add "API" since more than one number is affected in the patch, also API numbering has a generation so need to add 1. One day v12.0.0 will apply to both v1.12.0.0 and v2.12.0.0 update API version number from v1.12.0.0 to v1.13.0.0 On 13 January 2017 at 08:50, Maxim Uvarov <maxim.uvarov@linaro.org> wrote: > libodp has new interfaces and modified interfaces for the packet seg also structs changed - not sure access functions hide that http://people.linaro.org/~mike.holmes/diff-abi/libodp-compat_report.html > helper has only source code changes. > And new APIs for cockoo and iplookup http://people.linaro.org/~mike.holmes/diff-abi/libodphelper-compat_report.html With those notes and looking in the tool I get different .so numbers. > > Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org> > --- > configure.ac | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/configure.ac b/configure.ac > index 3a209597..729c1267 100644 > --- a/configure.ac > +++ b/configure.ac > @@ -3,7 +3,7 @@ AC_PREREQ([2.5]) > # Set correct API version > ########################################################### > ############### > m4_define([odpapi_generation_version], [1]) > -m4_define([odpapi_major_version], [12]) > +m4_define([odpapi_major_version], [13]) > m4_define([odpapi_minor_version], [0]) > m4_define([odpapi_point_version], [0]) > m4_define([odpapi_version], > @@ -38,10 +38,10 @@ AM_SILENT_RULES([yes]) > # 3. if interfaces were removed, then use C+1:0:0 > ########################################################### > ############### > > -ODP_LIBSO_VERSION=112:0:0 > +ODP_LIBSO_VERSION=113:0:0 > should be 113:0:0 > AC_SUBST(ODP_LIBSO_VERSION) > ########################################################################## # Set platform library version # # Follow version rules described here: # https://www.gnu.org/software/libtool/manual/html_node/ Updating-version-info.html # Version is Current:Revision:Age # 1. if there are only source changes, use C:R+1:A # 2. if interfaces were added use C+1:0:A+1 # 3. if interfaces were removed, then use C+1:0:0 ########################################################################## > > -ODPHELPER_LIBSO_VERSION=110:1:1 > +ODPHELPER_LIBSO_VERSION=110:2:1 > should be 111.0.2 > AC_SUBST(ODPHELPER_LIBSO_VERSION) > > # Checks for programs. > -- > 2.11.0.295.gd7dffce > > -- Mike Holmes Program Manager - Linaro Networking Group Linaro.org <http://www.linaro.org/> *│ *Open source software for ARM SoCs "Work should be fun and collaborative, the rest follows"
diff --git a/configure.ac b/configure.ac index 3a209597..729c1267 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ AC_PREREQ([2.5]) # Set correct API version ########################################################################## m4_define([odpapi_generation_version], [1]) -m4_define([odpapi_major_version], [12]) +m4_define([odpapi_major_version], [13]) m4_define([odpapi_minor_version], [0]) m4_define([odpapi_point_version], [0]) m4_define([odpapi_version], @@ -38,10 +38,10 @@ AM_SILENT_RULES([yes]) # 3. if interfaces were removed, then use C+1:0:0 ########################################################################## -ODP_LIBSO_VERSION=112:0:0 +ODP_LIBSO_VERSION=113:0:0 AC_SUBST(ODP_LIBSO_VERSION) -ODPHELPER_LIBSO_VERSION=110:1:1 +ODPHELPER_LIBSO_VERSION=110:2:1 AC_SUBST(ODPHELPER_LIBSO_VERSION) # Checks for programs.
libodp has new interfaces. helper has only source code changes. Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org> --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) -- 2.11.0.295.gd7dffce