Skip to content

Commit 4caec81

Browse files
committed
0.5.0
- shell-ip-address: + Added ipv6_addr_type. This function interprets the given option value as an IPv6 address similarly to inet_pton(3). + Added ipv4_ptonx, ipv6_ptonx. These functions takes a string representation of an IP address and prints out its raw, network byte order representation as a sequence of hexadecimal octets. + Added ipv6_ip_matches. This function takes two arguments, an IPv6 address and a prefix with length, and checks that this address is in this prefix. - shell-string: + Added special optimization for character-by-character iteration over a string. The optimization only works on some shell implementations (bash, ksh). - shell-quote: + Added quote_grep_regexp, quote_grep_regexp_variable. These functions are necessary for correct quoting of regular expressions for GNU grep 3.11 or higher. - shell-bitwise: + Added functions to operate with bits. This is a set of functions for manipulating individual bits in a number. Signed-off-by: Alexey Gladkov <legion@kernel.org>
1 parent f79426d commit 4caec81

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

shell-version

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ if [ -z "${__included_shell_version-}" ]; then
77
__included_shell_version=1
88

99
libshell_vmajor=0
10-
libshell_vminor=4
11-
libshell_vpatch=13
10+
libshell_vminor=5
11+
libshell_vpatch=0
1212

1313
libshell_version=4
1414

0 commit comments

Comments
 (0)