From: Adam Dickmeiss Date: Wed, 6 Jun 2007 16:42:35 +0000 (+0000) Subject: Towards 3.0.6. X-Git-Tag: YAZ.3.0.10~48 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=18b038dc608f5fe5d4d30f2193acf15ae0d26b2d Towards 3.0.6. --- diff --git a/NEWS b/NEWS index 689e7ac..184744e 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,5 @@ +--- 3.0.6 2007/06/06 + Fixed bug #1157: yaz-client does not read .yazclientrc from current directory. yaz-client now reads commands from file given by option -f if specified; then tries to read .yazclientrc in current directory. diff --git a/configure.ac b/configure.ac index 1fa05fd..0376949 100644 --- a/configure.ac +++ b/configure.ac @@ -1,8 +1,8 @@ dnl YAZ Toolkit, Index Data 1995-2007 dnl See the file LICENSE for details. -dnl $Id: configure.ac,v 1.82 2007-05-31 08:01:30 adam Exp $ +dnl $Id: configure.ac,v 1.83 2007-06-06 16:42:35 adam Exp $ AC_PREREQ(2.59) -AC_INIT([yaz],[3.0.5],[yaz-help@indexdata.dk]) +AC_INIT([yaz],[3.0.6],[yaz-help@indexdata.dk]) AC_CONFIG_SRCDIR(configure.ac) AC_CONFIG_AUX_DIR([config]) AM_INIT_AUTOMAKE([1.8]) diff --git a/debian/changelog b/debian/changelog index a2a01f9..8eb4956 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +yaz (3.0.6-1) unstable; urgency=low + + * Upstream. + + -- Adam Dickmeiss Wed, 06 Jun 2007 18:40:18 +0200 + yaz (3.0.5-4) unstable; urgency=low * Added yaz-illclient package. diff --git a/debian/rules b/debian/rules index dbcebd2..02cc543 100755 --- a/debian/rules +++ b/debian/rules @@ -98,7 +98,7 @@ binary-arch: build install dh_fixperms # dh_perl # dh_python - dh_makeshlibs -V 'libyaz3 (>= 3.0.4)' + dh_makeshlibs -V 'libyaz3 (>= 3.0.5)' dh_installdeb dh_shlibdeps -l debian/libyaz3/usr/lib dh_gencontrol diff --git a/include/yaz/yaz-version.h b/include/yaz/yaz-version.h index 9f360eb..ba1a5d2 100644 --- a/include/yaz/yaz-version.h +++ b/include/yaz/yaz-version.h @@ -24,7 +24,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -/* $Id: yaz-version.h,v 1.126 2007-05-23 13:16:33 adam Exp $ */ +/* $Id: yaz-version.h,v 1.127 2007-06-06 16:42:35 adam Exp $ */ /** * \file yaz-version.h * \brief Defines YAZ version. @@ -33,8 +33,8 @@ #include -#define YAZ_VERSION "3.0.5" -#define YAZ_VERSIONL 0x030005 +#define YAZ_VERSION "3.0.6" +#define YAZ_VERSIONL 0x030006 #define YAZ_DATE 1 diff --git a/win/yaz.nsi b/win/yaz.nsi index 24cf248..11b57cf 100644 --- a/win/yaz.nsi +++ b/win/yaz.nsi @@ -1,6 +1,6 @@ -; $Id: yaz.nsi,v 1.112 2007-06-06 16:34:23 adam Exp $ +; $Id: yaz.nsi,v 1.113 2007-06-06 16:42:36 adam Exp $ -!define VERSION "3.0.5" +!define VERSION "3.0.6" ; Microsoft runtime CRT ; Uncomment exactly ONE section of the three below diff --git a/win/yaz.rc b/win/yaz.rc index 2c62ffc..9aa91c5 100644 --- a/win/yaz.rc +++ b/win/yaz.rc @@ -1,8 +1,8 @@ #include "winver.h" VS_VERSION_INFO VERSIONINFO - FILEVERSION 3,0,4,1 - PRODUCTVERSION 3,0,4,1 + FILEVERSION 3,0,6,1 + PRODUCTVERSION 3,0,6,1 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -20,14 +20,14 @@ VS_VERSION_INFO VERSIONINFO VALUE "Comments", "Z39.50/SRU Library\0" VALUE "CompanyName", "Index Data ApS\0" VALUE "FileDescription", "YAZ Library\0" - VALUE "FileVersion", "3, 0, 4, 1\0" + VALUE "FileVersion", "3, 0, 6, 1\0" VALUE "InternalName", "YAZ\0" VALUE "LegalCopyright", "Copyright © 1995-2007 Index Data ApS\0" VALUE "LegalTrademarks", "\0" VALUE "OriginalFilename", "yaz.rc\0" VALUE "PrivateBuild", "\0" VALUE "ProductName", "YAZ Toolkit\0" - VALUE "ProductVersion", "3, 0, 4, 1\0" + VALUE "ProductVersion", "3, 0, 6, 1\0" VALUE "SpecialBuild", "\0" END }