Project Info Name.......: gnu-hello
Description: GNU Hello


gnu-hello       
Info
Commit...:d3ad77e6425499183293bcd2cfadc34c4e0c3934
Author...:karl <>
Committer:karl <>
Date.....:Tue Mar 22 18:40:46 2011 +0000
Parents..:f260e1fc2ad313bd760a6342b592aa27a014cbc2

Message
[project @ 2011-03-22 18:40:45 by karl]
2011

Changes
diff --git a/ChangeLog b/ChangeLog
line changes: +4/-0
index 2d22ce4..cc3226f
--- a/ChangeLog
+++ b/ChangeLog
@@ -15,6 +15,10 @@
 	* README-dev: gnulib-tool invocation would now be --add-import.
 	From Bruno.
 
+2010-04-07  Karl Berry  <karl@gnu.org>
+
+	* Version 2.6.
+
 2010-04-05  Karl Berry  <karl@gnu.org>
 
 	* build-aux/srclist.txt: new file, input to (Gnulib's) srclist-update.

diff --git a/configure.ac b/configure.ac
line changes: +1/-1
index e8bc58d..5eb36c4
--- a/configure.ac
+++ b/configure.ac
@@ -8,7 +8,7 @@ dnl This program is distributed in the hope that it will be useful, but
 dnl WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
 dnl implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
-AC_INIT([GNU Hello], [2.6], [bug-hello@gnu.org])
+AC_INIT([GNU Hello], [2.6.90], [bug-hello@gnu.org])
 
 dnl Must come before AM_INIT_AUTOMAKE.
 AC_CONFIG_AUX_DIR([build-aux])

diff --git a/doc/ChangeLog b/doc/ChangeLog
line changes: +5/-0
index 6440ab6..b896954
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,8 @@
+2011-03-22  Karl Berry  <karl@gnu.org>
+
+	* hello.texi: 2011.
+	(Overview): gnulib Introduction rather than Gnulib, etc.
+
 2010-12-31  Karl Berry  <karl@gnu.org>
 
 	* hello.texi (Top): Don't use @insertcopying, per rms.

diff --git a/doc/hello.texi b/doc/hello.texi
line changes: +7/-8
index 58fb5f5..4fd8c51
--- a/doc/hello.texi
+++ b/doc/hello.texi
@@ -16,7 +16,7 @@ This manual is for GNU Hello (version @value{VERSION}, @value{UPDATED}),
 which prints a friendly greeting (and serves as an example GNU package).
 
 Copyright @copyright{} 1992, 1993, 1996, 2002, 2005, 2006, 2007, 2008,
-2009, 2010 Free Software Foundation, Inc.
+2009, 2010, 2011 Free Software Foundation, Inc.
 
 @quotation
 Permission is granted to copy, distribute and/or modify this document
@@ -90,7 +90,7 @@ they document, that is part of the goal here.
 @cindex standards, GNU coding
 @cindex standards, GNU maintainer
 First, GNU Hello follows the GNU coding standards
-(@pxref{Top,,Preface,standards, GNU Coding Standards}) and GNU
+(@pxref{Top,,Preface,standards,GNU Coding Standards}) and GNU
 maintainer standards (@pxref{Top,,Preface,maintain, Information for
 GNU Maintainers}).  These are the basic documents which all GNU
 packages should adhere to.
@@ -99,7 +99,6 @@ The Hello package also implements recommended development practices
 not embodied in the standards, using other GNU packages and features:
 
 @itemize @bullet
-
 @item
 @cindex Automake
 @cindex Autoconf
@@ -111,7 +110,7 @@ for configuration.
 @cindex Gnulib
 @cindex @command{srclist-update} script
 @cindex @file{README-dev} source file
-It uses Gnulib (@pxref{Top,,Gnulib,gnulib,GNU Gnulib}) to enhance
+It uses Gnulib (@pxref{Top,,Introduction,gnulib,GNU Gnulib}) to enhance
 portability and avoid duplication of common sources.  Both
 @code{gnulib-tool} and @code{srclist-update} are used, for purposes of
 example.  See the @file{README-dev} file in the distribution.
@@ -144,9 +143,9 @@ HTML, PDF, DVI, plain text, XML, and other formats.
 
 @end itemize
 
-GNU Hello is implemented in C.  GNU Gettext contains ``hello world''
-examples in a variety of other programming languages; see the Gettext
-home page at @url{http://www.gnu.org/software/gettext/}.  
+GNU Hello is implemented in C.  The GNU Gettext distribution contains
+``hello world'' examples in many other programming languages; see the
+Gettext home page at @url{http://www.gnu.org/software/gettext/}.
 
 @cindex @file{Makefile.am} targets
 The top-level @file{Makefile.am} in Hello also contains a few special
@@ -188,7 +187,7 @@ Eichwalder, Karl Berry, and @w{The King}.
 @cindex sample output
 @cindex examples
 
-Here are some realistic examples of running GNU Hello.
+Here are some examples of running GNU Hello.
 
 This is the output of the command @samp{hello}:
 

diff --git a/doc/version.texi b/doc/version.texi
line changes: +4/-4
index 3941b14..c2c4bb7
--- a/doc/version.texi
+++ b/doc/version.texi
@@ -1,4 +1,4 @@
-@set UPDATED 31 December 2010
-@set UPDATED-MONTH December 2010
-@set EDITION 2.6
-@set VERSION 2.6
+@set UPDATED 22 March 2011
+@set UPDATED-MONTH March 2011
+@set EDITION 2.6.90
+@set VERSION 2.6.90

diff --git a/src/ChangeLog b/src/ChangeLog
line changes: +4/-0
index 1a3e1e1..1b09410
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
+2011-03-22  Karl Berry  <karl@gnu.org>
+
+	* hello.c (print_version): it's 2011.
+
 2010-01-31  Karl Berry  <karl@gnu.org>
 
 	* hello.c (print_help): add lines for the package home page,

diff --git a/src/hello.c b/src/hello.c
line changes: +2/-2
index c95ceb9..47af4da
--- a/src/hello.c
+++ b/src/hello.c
@@ -1,7 +1,7 @@
 /* hello.c -- print a greeting message and exit.
 
    Copyright 1992, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2005,
-   2006, 2007, 2008, 2010 Free Software Foundation, Inc.
+   2006, 2007, 2008, 2010, 2011 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
@@ -211,5 +211,5 @@ Copyright (C) %s Free Software Foundation, Inc.\n\
 License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\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"),
-              "2010");
+              "2011");
 }

This website is licensed under AGPL-3.0. Feel free to copy!