Bump version numbers to help with library compatibility
authorDan Scott <dan@coffeecode.net>
Thu, 31 May 2012 02:33:17 +0000 (22:33 -0400)
committerDan Scott <dan@coffeecode.net>
Thu, 31 May 2012 02:37:27 +0000 (22:37 -0400)
By bumping the OpenSRF version numbers for Perl libs, Python libraries,
and the libtool versioning for the libopensrf library, projects that
build on OpenSRF will be able to flag the minimum required version and
bail out early if an older version of OpenSRF has been installed.

Signed-off-by: Dan Scott <dan@coffeecode.net>

src/libopensrf/Makefile.am
src/perl/lib/OpenSRF.pm
src/python/setup.py
version.m4

index ca636a2..c0f6a3e 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2008-2010 Equinox Software, Inc., and others
+# Copyright (C) 2008-2012 Equinox Software, Inc., and others
 # Kevin Beswick <kevinbeswick00@gmail.com>
 #
 # This program is free software; you can redistribute it and/or
@@ -112,4 +112,4 @@ libopensrf_la_DEPENDENCIES = libosrf_json.la
 libopensrf_la_LIBADD = $(memcached_LIBS)
 
 libopensrf_la_SOURCES = $(TARGS) $(TARGS_HEADS) $(JSON_TARGS) $(JSON_TARGS_HEADS)
-libopensrf_la_LDFLAGS = -version-info 2:0:0
+libopensrf_la_LDFLAGS = -version-info 3:0:0
index 9f018f7..1319f33 100644 (file)
@@ -14,11 +14,11 @@ OpenSRF - Top level class for OpenSRF perl modules.
 
 =head1 VERSION
 
-Version 2.0.0
+Version 2.1.0
 
 =cut
 
-our $VERSION = "2.00";
+our $VERSION = "2.10";
 
 =head1 METHODS
 
index d4261d1..c56df95 100644 (file)
@@ -3,7 +3,7 @@
 from setuptools import setup
 
 setup(name='OpenSRF',
-    version='2.0.0',
+    version='2.1.0',
     install_requires=[
         'dnspython', # required by pyxmpp
        'python-memcached',
index 5c284f9..bdb0dc9 100644 (file)
@@ -1 +1 @@
-m4_define([VERSION_NUMBER],[master]) 
+m4_define([VERSION_NUMBER],[2.1.0])