diff --git a/ChangeLog b/ChangeLog index 8b535cf033..00e393f13f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue Mar 11 00:46:29 2008 Yukihiro Matsumoto + + * ruby.c (usage): remove some unimportant lines to fit -h message + in a page. [ruby-dev:34018] + Mon Mar 10 15:53:48 2008 Nobuyoshi Nakada * version.c (MKSTR): make US-ASCII. [ruby-dev:34010] diff --git a/ruby.c b/ruby.c index 90dbfe2e3f..7e505ad11d 100644 --- a/ruby.c +++ b/ruby.c @@ -130,7 +130,6 @@ usage(const char *name) "-Fpattern split() pattern for autosplit (-a)", "-i[extension] edit ARGV files in place (make backup if extension supplied)", "-Idirectory specify $LOAD_PATH directory (may be used more than once)", - "-Kkcode specifies KANJI (Japanese) code-set", "-l enable line ending processing", "-n assume 'while gets(); ... end' loop around your script", "-p assume loop like -n but print line also like sed", @@ -142,8 +141,6 @@ usage(const char *name) "-w turn warnings on for your script", "-W[level] set warning level; 0=silence, 1=medium, 2=verbose (default)", "-x[directory] strip off text before #!ruby line and perhaps cd to directory", - "--enable/--disable-FEATURE --enable/--disable=FEATURE enable/disable FEATUREs", - " gems: gem libraries, rubyopt: RUBYOPT env, or all", "--copyright print the copyright", "--version print the version", NULL diff --git a/version.h b/version.h index 3d4ddfa3b1..006e85c65c 100644 --- a/version.h +++ b/version.h @@ -1,7 +1,7 @@ #define RUBY_VERSION "1.9.0" -#define RUBY_RELEASE_DATE "2008-03-10" +#define RUBY_RELEASE_DATE "2008-03-11" #define RUBY_VERSION_CODE 190 -#define RUBY_RELEASE_CODE 20080310 +#define RUBY_RELEASE_CODE 20080311 #define RUBY_PATCHLEVEL 0 #define RUBY_VERSION_MAJOR 1 @@ -9,7 +9,7 @@ #define RUBY_VERSION_TEENY 0 #define RUBY_RELEASE_YEAR 2008 #define RUBY_RELEASE_MONTH 3 -#define RUBY_RELEASE_DAY 10 +#define RUBY_RELEASE_DAY 11 #ifdef RUBY_EXTERN RUBY_EXTERN const char ruby_version[];