summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/NEWS11
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/NEWS b/doc/NEWS
index b875e5b5f7..bd3e7feb25 100644
--- a/doc/NEWS
+++ b/doc/NEWS
@@ -1,3 +1,14 @@
+: getopts.rb
+
+ Rewrote to fix some bugs and complete features.
+ - Accept options with the colon in the first argument;
+ getopts("a:bcd:") is equivalent to getopts("bc", "a:", "d:").
+ - Do not discard the argument that caused an error.
+ - Do not discard '-', which commonly stands for stdin or stdout.
+ - Allow specifying a long option with a value using '='.
+ (command --long-option=value)
+ - Stop reading options when it meets a non-option argument.
+
: tsort module
Imported. Topological sorting library.