From: Bruno Haible Date: Sun, 9 May 2010 01:07:19 +0000 (+0200) Subject: Prepare for version 0.18. X-Git-Tag: v0.18~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fdeeeaba81cc63e0df0681794fb5b63081add4cc;p=thirdparty%2Fgettext.git Prepare for version 0.18. --- diff --git a/ChangeLog b/ChangeLog index e3e0af422..81d0b5299 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-05-09 Bruno Haible + + * version.sh: Bump to 0.18. + * windows/gettext.rc: Update year. + 2010-05-08 Bruno Haible * NEWS: Mention the PO mode changes. diff --git a/NEWS b/NEWS index 5187da526..3cee9ad7d 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,4 @@ -Version 0.18 - January 2008 +Version 0.18 - May 2010 * Runtime behaviour: - On MacOS X and Windows systems, now extends setlocale() and diff --git a/gettext-runtime/NEWS b/gettext-runtime/NEWS index 44974675f..d0d87d96f 100644 --- a/gettext-runtime/NEWS +++ b/gettext-runtime/NEWS @@ -1,4 +1,4 @@ -Version 0.18 - December 2009 +Version 0.18 - May 2010 * On MacOS X and Windows systems, now extends setlocale() and newlocale() so that their determination of the default locale considers diff --git a/gettext-runtime/intl/ChangeLog b/gettext-runtime/intl/ChangeLog index 78da53513..277dd9530 100644 --- a/gettext-runtime/intl/ChangeLog +++ b/gettext-runtime/intl/ChangeLog @@ -1,3 +1,9 @@ +2010-05-09 Bruno Haible + + * libgnuintl.h.in (LIBINTL_VERSION): Bump to 0.18. + * Makefile.in (LTV_CURRENT, LTV_REVISION, LTV_AGE): Bump to 9:0:1. + * libintl.rc: Update year. + 2010-05-09 Bruno Haible vasnprintf: Fix syntax errors in libintl build on mingw. diff --git a/gettext-runtime/intl/Makefile.in b/gettext-runtime/intl/Makefile.in index 48f6d7838..d547fe05e 100644 --- a/gettext-runtime/intl/Makefile.in +++ b/gettext-runtime/intl/Makefile.in @@ -1,5 +1,5 @@ # Makefile for directory with message catalog handling library of GNU gettext -# Copyright (C) 1995-1998, 2000-2007, 2009 Free Software Foundation, Inc. +# Copyright (C) 1995-1998, 2000-2007, 2009-2010 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU Library General Public License as published @@ -231,9 +231,9 @@ libintl.la libgnuintl.la: $(OBJECTS) $(OBJECTS_RES_@WOE32@) # according to the libtool documentation, section "Library interface versions". # Maintainers of other packages that include the intl directory must *not* # change these values. -LTV_CURRENT=8 -LTV_REVISION=2 -LTV_AGE=0 +LTV_CURRENT=9 +LTV_REVISION=0 +LTV_AGE=1 .SUFFIXES: .SUFFIXES: .c .y .o .lo .sin .sed diff --git a/gettext-runtime/intl/libgnuintl.h.in b/gettext-runtime/intl/libgnuintl.h.in index 6973c3a1f..c991bf051 100644 --- a/gettext-runtime/intl/libgnuintl.h.in +++ b/gettext-runtime/intl/libgnuintl.h.in @@ -1,5 +1,5 @@ /* Message catalogs for internationalization. - Copyright (C) 1995-1997, 2000-2009 Free Software Foundation, Inc. + Copyright (C) 1995-1997, 2000-2010 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published @@ -56,7 +56,7 @@ extern "C" { /* Version number: (major<<16) + (minor<<8) + subminor */ -#define LIBINTL_VERSION 0x001100 +#define LIBINTL_VERSION 0x001200 extern int libintl_version; diff --git a/gettext-runtime/intl/libintl.rc b/gettext-runtime/intl/libintl.rc index bf8c4db0a..b58fffbd3 100644 --- a/gettext-runtime/intl/libintl.rc +++ b/gettext-runtime/intl/libintl.rc @@ -24,7 +24,7 @@ BEGIN VALUE "FileDescription", "LGPLed libintl for Windows NT/2000/XP/Vista/7 and Windows 95/98/ME\0" VALUE "FileVersion", PACKAGE_VERSION_STRING "\0" VALUE "InternalName", "intl.dll\0" - VALUE "LegalCopyright", "Copyright (C) 1995-2009\0" + VALUE "LegalCopyright", "Copyright (C) 1995-2010\0" VALUE "LegalTrademarks", "\0" VALUE "OriginalFilename", "intl.dll\0" VALUE "ProductName", "libintl: accessing NLS message catalogs\0" diff --git a/gettext-runtime/m4/ChangeLog b/gettext-runtime/m4/ChangeLog index cced58394..dd853910a 100644 --- a/gettext-runtime/m4/ChangeLog +++ b/gettext-runtime/m4/ChangeLog @@ -1,3 +1,7 @@ +2010-05-09 Bruno Haible + + * po.m4 (AM_PO_SUBDIRS): Set GETTEXT_MACRO_VERSION to 0.18. + 2010-04-20 Simon Josefsson Bruno Haible diff --git a/gettext-runtime/m4/po.m4 b/gettext-runtime/m4/po.m4 index 960efe15d..47f36a41a 100644 --- a/gettext-runtime/m4/po.m4 +++ b/gettext-runtime/m4/po.m4 @@ -29,7 +29,7 @@ AC_DEFUN([AM_PO_SUBDIRS], dnl Release version of the gettext macros. This is used to ensure that dnl the gettext macros and po/Makefile.in.in are in sync. - AC_SUBST([GETTEXT_MACRO_VERSION], [0.17]) + AC_SUBST([GETTEXT_MACRO_VERSION], [0.18]) dnl Perform the following tests also if --disable-nls has been given, dnl because they are needed for "make dist" to work. diff --git a/gettext-runtime/po/ChangeLog b/gettext-runtime/po/ChangeLog index 6d74859c3..7c989df5d 100644 --- a/gettext-runtime/po/ChangeLog +++ b/gettext-runtime/po/ChangeLog @@ -1,3 +1,7 @@ +2010-05-09 Bruno Haible + + * Makefile.in.in (GETTEXT_MACRO_VERSION): Bump to 0.18. + 2010-02-07 Bruno Haible * bg.po: New file, from Roumen Petrov . diff --git a/gettext-runtime/po/Makefile.in.in b/gettext-runtime/po/Makefile.in.in index 2083f6a47..83d8838ac 100644 --- a/gettext-runtime/po/Makefile.in.in +++ b/gettext-runtime/po/Makefile.in.in @@ -1,5 +1,5 @@ # Makefile for PO directory in any package using GNU gettext. -# Copyright (C) 1995-1997, 2000-2007, 2009 by Ulrich Drepper +# Copyright (C) 1995-1997, 2000-2007, 2009-2010 by Ulrich Drepper # # This file can be copied and used freely without restrictions. It can # be used in projects which are not available under the GNU General Public @@ -9,7 +9,7 @@ # General Public License and is *not* in the public domain. # # Origin: gettext-0.18 -GETTEXT_MACRO_VERSION = 0.17 +GETTEXT_MACRO_VERSION = 0.18 PACKAGE = @PACKAGE@ VERSION = @VERSION@ diff --git a/gettext-tools/libgettextpo/ChangeLog b/gettext-tools/libgettextpo/ChangeLog index 9ab64ae14..ad66dc097 100644 --- a/gettext-tools/libgettextpo/ChangeLog +++ b/gettext-tools/libgettextpo/ChangeLog @@ -1,3 +1,9 @@ +2010-05-09 Bruno Haible + + * gettext-po.h.in (LIBGETTEXTPO_VERSION): Bump version number. + * Makefile.am (LTV_CURRENT, LTV_REVISION, LTV_AGE): Bump to 5:0:5. + * libgettextpo.rc: Update year. + 2009-12-26 Bruno Haible * libgettextpo.rc: Update. diff --git a/gettext-tools/libgettextpo/Makefile.am b/gettext-tools/libgettextpo/Makefile.am index 48a0f6e29..648f589ca 100644 --- a/gettext-tools/libgettextpo/Makefile.am +++ b/gettext-tools/libgettextpo/Makefile.am @@ -1,5 +1,5 @@ ## Makefile for the gettext-tools/libgettextpo subdirectory of GNU gettext -## Copyright (C) 1995-1998, 2000-2009 Free Software Foundation, Inc. +## Copyright (C) 1995-1998, 2000-2010 Free Software Foundation, Inc. ## ## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by @@ -91,9 +91,9 @@ libgettextpo_la_AUXSOURCES = \ # Libtool's library version information for libgettextpo. # See the libtool documentation, section "Library interface versions". -LTV_CURRENT=4 +LTV_CURRENT=5 LTV_REVISION=0 -LTV_AGE=4 +LTV_AGE=5 # How to build libgettextpo.la. # Don't make it depend on libgettextsrc.la or libgettextlib.la, since they diff --git a/gettext-tools/libgettextpo/gettext-po.h.in b/gettext-tools/libgettextpo/gettext-po.h.in index fc09ee671..ede1a63eb 100644 --- a/gettext-tools/libgettextpo/gettext-po.h.in +++ b/gettext-tools/libgettextpo/gettext-po.h.in @@ -1,5 +1,5 @@ /* Public API for GNU gettext PO files - contained in libgettextpo. - Copyright (C) 2003-2008 Free Software Foundation, Inc. + Copyright (C) 2003-2008, 2010 Free Software Foundation, Inc. Written by Bruno Haible , 2003. This program is free software: you can redistribute it and/or modify @@ -28,7 +28,7 @@ extern "C" { /* =========================== Meta Information ============================ */ /* Version number: (major<<16) + (minor<<8) + subminor */ -#define LIBGETTEXTPO_VERSION 0x001100 +#define LIBGETTEXTPO_VERSION 0x001200 extern int libgettextpo_version; /* ================================= Types ================================= */ diff --git a/gettext-tools/libgettextpo/libgettextpo.rc b/gettext-tools/libgettextpo/libgettextpo.rc index 2c986bec1..e12d6da70 100644 --- a/gettext-tools/libgettextpo/libgettextpo.rc +++ b/gettext-tools/libgettextpo/libgettextpo.rc @@ -24,7 +24,7 @@ BEGIN VALUE "FileDescription", "GPLed libgettextpo for Windows NT/2000/XP/Vista/7 and Windows 95/98/ME\0" VALUE "FileVersion", PACKAGE_VERSION_STRING "\0" VALUE "InternalName", "gettextpo.dll\0" - VALUE "LegalCopyright", "Copyright (C) 1995-2009\0" + VALUE "LegalCopyright", "Copyright (C) 1995-2010\0" VALUE "LegalTrademarks", "\0" VALUE "OriginalFilename", "gettextpo.dll\0" VALUE "ProductName", "libgettextpo: public API for PO files\0" diff --git a/gettext-tools/misc/ChangeLog b/gettext-tools/misc/ChangeLog index dd6de8dd5..8f10145f8 100644 --- a/gettext-tools/misc/ChangeLog +++ b/gettext-tools/misc/ChangeLog @@ -1,3 +1,7 @@ +2010-05-09 Bruno Haible + + * autopoint.in (func_version): Bump copyright year. + 2010-05-08 Bruno Haible * po-mode.el (po-mode-version-string): Bump to 2.2. diff --git a/gettext-tools/misc/autopoint.in b/gettext-tools/misc/autopoint.in index ec6059d1f..4eb68afa2 100644 --- a/gettext-tools/misc/autopoint.in +++ b/gettext-tools/misc/autopoint.in @@ -1,6 +1,6 @@ #! /bin/sh # -# Copyright (C) 2002-2009 Free Software Foundation, Inc. +# Copyright (C) 2002-2010 Free Software Foundation, Inc. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -174,7 +174,7 @@ func_version () { echo "$progname (GNU $package) $version" echo "Uses a versions archive in @ARCHIVE_FORMAT@ format." - echo "Copyright (C) 2002-2008 Free Software Foundation, Inc. + echo "Copyright (C) 2002-2010 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law." diff --git a/gettext-tools/po/ChangeLog b/gettext-tools/po/ChangeLog index 17db3b439..47a5538f1 100644 --- a/gettext-tools/po/ChangeLog +++ b/gettext-tools/po/ChangeLog @@ -1,3 +1,7 @@ +2010-05-09 Bruno Haible + + * Makefile.in.in (GETTEXT_MACRO_VERSION): Bump to 0.18. + 2010-03-03 Bruno Haible * bg.po: Update from Roumen Petrov . diff --git a/gettext-tools/po/Makefile.in.in b/gettext-tools/po/Makefile.in.in index 2083f6a47..83d8838ac 100644 --- a/gettext-tools/po/Makefile.in.in +++ b/gettext-tools/po/Makefile.in.in @@ -1,5 +1,5 @@ # Makefile for PO directory in any package using GNU gettext. -# Copyright (C) 1995-1997, 2000-2007, 2009 by Ulrich Drepper +# Copyright (C) 1995-1997, 2000-2007, 2009-2010 by Ulrich Drepper # # This file can be copied and used freely without restrictions. It can # be used in projects which are not available under the GNU General Public @@ -9,7 +9,7 @@ # General Public License and is *not* in the public domain. # # Origin: gettext-0.18 -GETTEXT_MACRO_VERSION = 0.17 +GETTEXT_MACRO_VERSION = 0.18 PACKAGE = @PACKAGE@ VERSION = @VERSION@ diff --git a/gettext-tools/src/ChangeLog b/gettext-tools/src/ChangeLog index 54ab7797f..4b523a353 100644 --- a/gettext-tools/src/ChangeLog +++ b/gettext-tools/src/ChangeLog @@ -1,3 +1,21 @@ +2010-05-09 Bruno Haible + + * msgattrib.c (main): Update year in --version output. + * msgcat.c (main): Likewise. + * msgcmp.c (main): Likewise. + * msgcomm.c (main): Likewise. + * msgconv.c (main): Likewise. + * msgen.c (main): Likewise. + * msgexec.c (main): Likewise. + * msgfilter.c (main): Likewise. + * msgfmt.c (main): Likewise. + * msggrep.c (main): Likewise. + * msginit.c (main): Likewise. + * msgmerge.c (main): Likewise. + * msgunfmt.c (main): Likewise. + * msguniq.c (main): Likewise. + * xgettext.c (main): Likewise. + 2010-04-25 Bruno Haible Update support of object-pascal-format strings. diff --git a/gettext-tools/src/msgattrib.c b/gettext-tools/src/msgattrib.c index 73b7942d1..5c24656df 100644 --- a/gettext-tools/src/msgattrib.c +++ b/gettext-tools/src/msgattrib.c @@ -339,7 +339,7 @@ License GPLv3+: GNU GPL version 3 or later \n\ This is free software: you are free to change and redistribute it.\n\ There is NO WARRANTY, to the extent permitted by law.\n\ "), - "2001-2009"); + "2001-2010"); printf (_("Written by %s.\n"), proper_name ("Bruno Haible")); exit (EXIT_SUCCESS); } diff --git a/gettext-tools/src/msgcat.c b/gettext-tools/src/msgcat.c index 025fd50d1..ad2f39c8f 100644 --- a/gettext-tools/src/msgcat.c +++ b/gettext-tools/src/msgcat.c @@ -1,5 +1,5 @@ /* Concatenates several translation catalogs. - Copyright (C) 2001-2007, 2009 Free Software Foundation, Inc. + Copyright (C) 2001-2007, 2009-2010 Free Software Foundation, Inc. Written by Bruno Haible , 2001. This program is free software: you can redistribute it and/or modify @@ -291,7 +291,7 @@ License GPLv3+: GNU GPL version 3 or later \n\ This is free software: you are free to change and redistribute it.\n\ There is NO WARRANTY, to the extent permitted by law.\n\ "), - "2001-2009"); + "2001-2010"); printf (_("Written by %s.\n"), proper_name ("Bruno Haible")); exit (EXIT_SUCCESS); } diff --git a/gettext-tools/src/msgcmp.c b/gettext-tools/src/msgcmp.c index 6cf05306e..9166b1195 100644 --- a/gettext-tools/src/msgcmp.c +++ b/gettext-tools/src/msgcmp.c @@ -1,5 +1,5 @@ /* GNU gettext - internationalization aids - Copyright (C) 1995-1998, 2000-2009 Free Software Foundation, Inc. + Copyright (C) 1995-1998, 2000-2010 Free Software Foundation, Inc. This file was written by Peter Miller This program is free software: you can redistribute it and/or modify @@ -174,7 +174,7 @@ License GPLv3+: GNU GPL version 3 or later \n\ This is free software: you are free to change and redistribute it.\n\ There is NO WARRANTY, to the extent permitted by law.\n\ "), - "1995-1998, 2000-2009"); + "1995-1998, 2000-2010"); printf (_("Written by %s.\n"), proper_name ("Peter Miller")); exit (EXIT_SUCCESS); } diff --git a/gettext-tools/src/msgcomm.c b/gettext-tools/src/msgcomm.c index 4daf58762..02c16560f 100644 --- a/gettext-tools/src/msgcomm.c +++ b/gettext-tools/src/msgcomm.c @@ -282,7 +282,7 @@ License GPLv3+: GNU GPL version 3 or later \n\ This is free software: you are free to change and redistribute it.\n\ There is NO WARRANTY, to the extent permitted by law.\n\ "), - "1995-1998, 2000-2009"); + "1995-1998, 2000-2010"); printf (_("Written by %s.\n"), proper_name ("Peter Miller")); exit (EXIT_SUCCESS); } diff --git a/gettext-tools/src/msgconv.c b/gettext-tools/src/msgconv.c index 5cdef6168..b6df3f29f 100644 --- a/gettext-tools/src/msgconv.c +++ b/gettext-tools/src/msgconv.c @@ -237,7 +237,7 @@ License GPLv3+: GNU GPL version 3 or later \n\ This is free software: you are free to change and redistribute it.\n\ There is NO WARRANTY, to the extent permitted by law.\n\ "), - "2001-2009"); + "2001-2010"); printf (_("Written by %s.\n"), proper_name ("Bruno Haible")); exit (EXIT_SUCCESS); } diff --git a/gettext-tools/src/msgen.c b/gettext-tools/src/msgen.c index 0fac062ca..7a6ce2b6b 100644 --- a/gettext-tools/src/msgen.c +++ b/gettext-tools/src/msgen.c @@ -233,7 +233,7 @@ License GPLv3+: GNU GPL version 3 or later \n\ This is free software: you are free to change and redistribute it.\n\ There is NO WARRANTY, to the extent permitted by law.\n\ "), - "2001-2009"); + "2001-2010"); printf (_("Written by %s.\n"), proper_name ("Bruno Haible")); exit (EXIT_SUCCESS); } diff --git a/gettext-tools/src/msgexec.c b/gettext-tools/src/msgexec.c index 619794822..9ae1e3c26 100644 --- a/gettext-tools/src/msgexec.c +++ b/gettext-tools/src/msgexec.c @@ -1,5 +1,5 @@ /* Pass translations to a subprocess. - Copyright (C) 2001-2009 Free Software Foundation, Inc. + Copyright (C) 2001-2010 Free Software Foundation, Inc. Written by Bruno Haible , 2001. This program is free software: you can redistribute it and/or modify @@ -182,7 +182,7 @@ License GPLv3+: GNU GPL version 3 or later \n\ This is free software: you are free to change and redistribute it.\n\ There is NO WARRANTY, to the extent permitted by law.\n\ "), - "2001-2009"); + "2001-2010"); printf (_("Written by %s.\n"), proper_name ("Bruno Haible")); exit (EXIT_SUCCESS); } diff --git a/gettext-tools/src/msgfilter.c b/gettext-tools/src/msgfilter.c index 6fa8c72ee..e29ad029b 100644 --- a/gettext-tools/src/msgfilter.c +++ b/gettext-tools/src/msgfilter.c @@ -275,7 +275,7 @@ License GPLv3+: GNU GPL version 3 or later \n\ This is free software: you are free to change and redistribute it.\n\ There is NO WARRANTY, to the extent permitted by law.\n\ "), - "2001-2009"); + "2001-2010"); printf (_("Written by %s.\n"), proper_name ("Bruno Haible")); exit (EXIT_SUCCESS); } diff --git a/gettext-tools/src/msgfmt.c b/gettext-tools/src/msgfmt.c index fcf2e299a..740f754b9 100644 --- a/gettext-tools/src/msgfmt.c +++ b/gettext-tools/src/msgfmt.c @@ -1,5 +1,5 @@ /* Converts Uniforum style .po files to binary .mo files - Copyright (C) 1995-1998, 2000-2007, 2009 Free Software Foundation, Inc. + Copyright (C) 1995-1998, 2000-2007, 2009-2010 Free Software Foundation, Inc. Written by Ulrich Drepper , April 1995. This program is free software: you can redistribute it and/or modify @@ -368,7 +368,7 @@ License GPLv3+: GNU GPL version 3 or later \n\ This is free software: you are free to change and redistribute it.\n\ There is NO WARRANTY, to the extent permitted by law.\n\ "), - "1995-1998, 2000-2009"); + "1995-1998, 2000-2010"); printf (_("Written by %s.\n"), proper_name ("Ulrich Drepper")); exit (EXIT_SUCCESS); } diff --git a/gettext-tools/src/msggrep.c b/gettext-tools/src/msggrep.c index 03d9da5d0..dae019731 100644 --- a/gettext-tools/src/msggrep.c +++ b/gettext-tools/src/msggrep.c @@ -412,7 +412,7 @@ License GPLv3+: GNU GPL version 3 or later \n\ This is free software: you are free to change and redistribute it.\n\ There is NO WARRANTY, to the extent permitted by law.\n\ "), - "2001-2009"); + "2001-2010"); printf (_("Written by %s.\n"), proper_name ("Bruno Haible")); exit (EXIT_SUCCESS); } diff --git a/gettext-tools/src/msginit.c b/gettext-tools/src/msginit.c index 2f5d5012a..a41107ab7 100644 --- a/gettext-tools/src/msginit.c +++ b/gettext-tools/src/msginit.c @@ -270,7 +270,7 @@ License GPLv3+: GNU GPL version 3 or later \n\ This is free software: you are free to change and redistribute it.\n\ There is NO WARRANTY, to the extent permitted by law.\n\ "), - "2001-2009"); + "2001-2010"); printf (_("Written by %s.\n"), proper_name ("Bruno Haible")); exit (EXIT_SUCCESS); } diff --git a/gettext-tools/src/msgmerge.c b/gettext-tools/src/msgmerge.c index 84368a373..6fe5fdb55 100644 --- a/gettext-tools/src/msgmerge.c +++ b/gettext-tools/src/msgmerge.c @@ -346,7 +346,7 @@ License GPLv3+: GNU GPL version 3 or later \n\ This is free software: you are free to change and redistribute it.\n\ There is NO WARRANTY, to the extent permitted by law.\n\ "), - "1995-1998, 2000-2009"); + "1995-1998, 2000-2010"); printf (_("Written by %s.\n"), proper_name ("Peter Miller")); exit (EXIT_SUCCESS); } diff --git a/gettext-tools/src/msgunfmt.c b/gettext-tools/src/msgunfmt.c index 34faeba7a..f101d7fa2 100644 --- a/gettext-tools/src/msgunfmt.c +++ b/gettext-tools/src/msgunfmt.c @@ -264,7 +264,7 @@ License GPLv3+: GNU GPL version 3 or later \n\ This is free software: you are free to change and redistribute it.\n\ There is NO WARRANTY, to the extent permitted by law.\n\ "), - "1995-1998, 2000-2009"); + "1995-1998, 2000-2010"); printf (_("Written by %s.\n"), proper_name ("Ulrich Drepper")); exit (EXIT_SUCCESS); } diff --git a/gettext-tools/src/msguniq.c b/gettext-tools/src/msguniq.c index 31d10e082..c58f2ab83 100644 --- a/gettext-tools/src/msguniq.c +++ b/gettext-tools/src/msguniq.c @@ -261,7 +261,7 @@ License GPLv3+: GNU GPL version 3 or later \n\ This is free software: you are free to change and redistribute it.\n\ There is NO WARRANTY, to the extent permitted by law.\n\ "), - "2001-2009"); + "2001-2010"); printf (_("Written by %s.\n"), proper_name ("Bruno Haible")); exit (EXIT_SUCCESS); } diff --git a/gettext-tools/src/xgettext.c b/gettext-tools/src/xgettext.c index a062de6a3..919f30b39 100644 --- a/gettext-tools/src/xgettext.c +++ b/gettext-tools/src/xgettext.c @@ -586,7 +586,7 @@ License GPLv3+: GNU GPL version 3 or later \n\ This is free software: you are free to change and redistribute it.\n\ There is NO WARRANTY, to the extent permitted by law.\n\ "), - "1995-1998, 2000-2009"); + "1995-1998, 2000-2010"); printf (_("Written by %s.\n"), proper_name ("Ulrich Drepper")); exit (EXIT_SUCCESS); } diff --git a/version.sh b/version.sh index 42aa03169..95e669128 100644 --- a/version.sh +++ b/version.sh @@ -1,3 +1,3 @@ # Version number and release date. -VERSION_NUMBER=0.18-pre1 -RELEASE_DATE=2007-12-24 # in "date +%Y-%m-%d" format +VERSION_NUMBER=0.18 +RELEASE_DATE=2010-05-09 # in "date +%Y-%m-%d" format diff --git a/windows/gettext.rc b/windows/gettext.rc index 59fe25350..439c8affa 100644 --- a/windows/gettext.rc +++ b/windows/gettext.rc @@ -24,7 +24,7 @@ BEGIN VALUE "FileDescription", "GPLed program for Windows NT/2000/XP/Vista/7 and Windows 95/98/ME\0" VALUE "FileVersion", PACKAGE_VERSION_STRING "\0" VALUE "InternalName", "*.exe\0" - VALUE "LegalCopyright", "Copyright (C) 1995-2009\0" + VALUE "LegalCopyright", "Copyright (C) 1995-2010\0" VALUE "LegalTrademarks", "\0" VALUE "OriginalFilename", "*.exe\0" VALUE "ProductName", "gettext utilities\0"