[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] shared library version: increment REVISION
From: |
Jim Meyering |
Subject: |
[PATCH] shared library version: increment REVISION |
Date: |
Wed, 18 May 2011 18:06:34 +0200 |
Note that I neglected to increment this for parted-2.2 and 2.3,
but now that I've added an item to README-release, it should
be done more consistently from now on.
>From ceea6ad7a336efa37d951e2004fcf3b7d00ebdcb Mon Sep 17 00:00:00 2001
From: Jim Meyering <address@hidden>
Date: Wed, 18 May 2011 18:03:30 +0200
Subject: [PATCH] shared library version: increment REVISION
* libparted/Makefile.am (REVISION): Increment, since there have
been changes to the library, but no interface addition or removal.
* README-release: Mention the shared-library version update procedure.
---
README-release | 3 +++
libparted/Makefile.am | 5 +++--
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/README-release b/README-release
index 9b0a40a..2e5266c 100644
--- a/README-release
+++ b/README-release
@@ -4,6 +4,9 @@ Here are most of the steps we (maintainers) follow when making
a release.
git checkout master; git pull
+* Adjust shared-library settings, CURRENT:REVISION:AGE in
+ libparted/Makefile.am, following instructions in the comments there.
+
* Run ./configure && make maintainer-clean
* Ensure that the desired versions of autoconf, automake, etc.
diff --git a/libparted/Makefile.am b/libparted/Makefile.am
index 5e95400..dce96b7 100644
--- a/libparted/Makefile.am
+++ b/libparted/Makefile.am
@@ -22,9 +22,10 @@ partedincludedir = -I$(top_srcdir)/lib
-I$(top_srcdir)/include
lib_LTLIBRARIES = libparted.la
# Set the shared library version, per Libtool's guidelines.
-# For details, see the "Libtool's versioning system" section of "info libtool"
+# For details, see the "Updating library version information" section of
+# "info libtool".
CURRENT = 0
-REVISION = 1
+REVISION = 2
AGE = 0
libparted_la_LDFLAGS = -version-info $(CURRENT):$(REVISION):$(AGE)
--
1.7.5.1.341.g177b8
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [PATCH] shared library version: increment REVISION,
Jim Meyering <=