diff options
author | Werner Koch <[email protected]> | 2008-05-27 11:45:44 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2008-05-27 11:45:44 +0000 |
commit | 6f3011df85fd5388e13786dcf92a7ad434b9791a (patch) | |
tree | 81a5f14b1e46221bdcc22aaf7d1ea94db22d7fb9 | |
parent | Preparing a release. (diff) | |
download | libassuan-6f3011df85fd5388e13786dcf92a7ad434b9791a.tar.gz libassuan-6f3011df85fd5388e13786dcf92a7ad434b9791a.zip |
Get ready for the envisioned API changes
-rw-r--r-- | NEWS | 8 | ||||
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | doc/Makefile.am | 2 | ||||
-rw-r--r-- | doc/README.apichanges | 11 |
4 files changed, 23 insertions, 2 deletions
@@ -1,3 +1,11 @@ +Noteworthy changes in version 1.1.0 +------------------------------------------------ + + * API change: See doc/README.apichanges. + + * Now using libtool and builds a DSO. + + Noteworthy changes in version 1.0.5 (2008-05-25) ------------------------------------------------ diff --git a/configure.ac b/configure.ac index 4f8ce8e..814523c 100644 --- a/configure.ac +++ b/configure.ac @@ -24,8 +24,8 @@ min_automake_version="1.10" # Remember to change the version number immediately *after* a release. # Set my_issvn to "yes" for non-released code. Remember to run an # "svn up" and "autogen.sh" right before creating a distribution. -m4_define([my_version], [1.0.5]) -m4_define([my_issvn], [no]) +m4_define([my_version], [1.1.0]) +m4_define([my_issvn], [yes]) m4_define([svn_revision], m4_esyscmd([echo -n $( (svn info 2>/dev/null \ || echo 'Revision: 0')|sed -n '/^Revision:/ {s/[^0-9]//gp;q;}')])) diff --git a/doc/Makefile.am b/doc/Makefile.am index 7d9210d..daea6e0 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -18,6 +18,8 @@ ## Process this file with automake to produce Makefile.in +EXTRA_DIST = README.apichanges + info_TEXINFOS = assuan.texi assuan_TEXINFOS = lgpl.texi gpl.texi diff --git a/doc/README.apichanges b/doc/README.apichanges new file mode 100644 index 0000000..0a45afe --- /dev/null +++ b/doc/README.apichanges @@ -0,0 +1,11 @@ +README.apichanges -*- text -*- + +API changes between 1.0.5 and 1.1.0: +==================================== + +While allowing to build libassuan as a DSO we decided to clean up the +API. The changes are straightforward and it should obnly take a few +minutes to fix your code. + + TODO. + |