Skip to content

Commit a23b1f1

Browse files
author
PetersSharp
committed
release 0.0.8 2018-08-05
1 parent 459a1d8 commit a23b1f1

File tree

15 files changed

+1520
-1284
lines changed

15 files changed

+1520
-1284
lines changed

Makefile.am

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ EXTRA_DIST = \
1717
test/check_wchar2_MSVC.c \
1818
src/libwcharext.c \
1919
src/strptime_w32.c \
20+
src/wdir_msvc.c \
2021
README.md
2122

2223
EXTRA_HEADERS = \

Makefile.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,7 @@ EXTRA_DIST = \
286286
test/check_wchar2_MSVC.c \
287287
src/libwcharext.c \
288288
src/strptime_w32.c \
289+
src/wdir_msvc.c \
289290
README.md
290291

291292
EXTRA_HEADERS = \

config.status

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

configure

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.63 for libwchar2 0.0.7.
3+
# Generated by GNU Autoconf 2.63 for libwchar2 0.0.8.
44
#
55
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
66
# 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
@@ -743,8 +743,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
743743
# Identity of this package.
744744
PACKAGE_NAME='libwchar2'
745745
PACKAGE_TARNAME='libwchar2'
746-
PACKAGE_VERSION='0.0.7'
747-
PACKAGE_STRING='libwchar2 0.0.7'
746+
PACKAGE_VERSION='0.0.8'
747+
PACKAGE_STRING='libwchar2 0.0.8'
748748
PACKAGE_BUGREPORT=''
749749

750750
ac_unique_file="src/libwchar.c"
@@ -1492,7 +1492,7 @@ if test "$ac_init_help" = "long"; then
14921492
# Omit some internal or obsolete options to make the list less imposing.
14931493
# This message is too long to be a string in the A/UX 3.1 sh.
14941494
cat <<_ACEOF
1495-
\`configure' configures libwchar2 0.0.7 to adapt to many kinds of systems.
1495+
\`configure' configures libwchar2 0.0.8 to adapt to many kinds of systems.
14961496

14971497
Usage: $0 [OPTION]... [VAR=VALUE]...
14981498

@@ -1563,7 +1563,7 @@ fi
15631563

15641564
if test -n "$ac_init_help"; then
15651565
case $ac_init_help in
1566-
short | recursive ) echo "Configuration of libwchar2 0.0.7:";;
1566+
short | recursive ) echo "Configuration of libwchar2 0.0.8:";;
15671567
esac
15681568
cat <<\_ACEOF
15691569

@@ -1672,7 +1672,7 @@ fi
16721672
test -n "$ac_init_help" && exit $ac_status
16731673
if $ac_init_version; then
16741674
cat <<\_ACEOF
1675-
libwchar2 configure 0.0.7
1675+
libwchar2 configure 0.0.8
16761676
generated by GNU Autoconf 2.63
16771677

16781678
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
@@ -1686,7 +1686,7 @@ cat >config.log <<_ACEOF
16861686
This file contains any messages produced by compilers while
16871687
running configure, to aid debugging if configure makes a mistake.
16881688

1689-
It was created by libwchar2 $as_me 0.0.7, which was
1689+
It was created by libwchar2 $as_me 0.0.8, which was
16901690
generated by GNU Autoconf 2.63. Invocation command line was
16911691

16921692
$ $0 $@
@@ -4673,7 +4673,7 @@ fi
46734673

46744674
# Define the identity of the package.
46754675
PACKAGE='libwchar2'
4676-
VERSION='0.0.7'
4676+
VERSION='0.0.8'
46774677

46784678

46794679
cat >>confdefs.h <<_ACEOF
@@ -16190,7 +16190,7 @@ exec 6>&1
1619016190
# report actual input values of CONFIG_FILES etc. instead of their
1619116191
# values after options handling.
1619216192
ac_log="
16193-
This file was extended by libwchar2 $as_me 0.0.7, which was
16193+
This file was extended by libwchar2 $as_me 0.0.8, which was
1619416194
generated by GNU Autoconf 2.63. Invocation command line was
1619516195

1619616196
CONFIG_FILES = $CONFIG_FILES
@@ -16253,7 +16253,7 @@ Report bugs to <bug-autoconf@gnu.org>."
1625316253
_ACEOF
1625416254
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1625516255
ac_cs_version="\\
16256-
libwchar2 config.status 0.0.7
16256+
libwchar2 config.status 0.0.8
1625716257
configured by $0, generated by GNU Autoconf 2.63,
1625816258
with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
1625916259

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
AC_PREREQ([2.63])
3-
AC_INIT([libwchar2], [0.0.7], [])
3+
AC_INIT([libwchar2], [0.0.8], [])
44
AC_CONFIG_SRCDIR([src/libwchar.c])
55
AC_CONFIG_HEADERS([config.h])
66
AC_CONFIG_AUX_DIR([build])

docs/CHANGELOG-master.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44

55
#### [Recent Commits to LibWchar2:master](https://github.com/ClnViewer/LibWchar2/commits/master.atom)
66

7-
- [#2](https://github.com/ClnViewer/LibWchar2/commit/d4407bbaef5b5441e53920394a2c649ce4bb1f27) update docs 2018-08-03 (*03 August 2018 15:25*)
8-
- [#3](https://github.com/ClnViewer/LibWchar2/commit/671c4efa832430b41406f56270df00bf7adfb1bf) update tinyDir tests 2018-08-03 (*03 August 2018 15:03*)
9-
- [#4](https://github.com/ClnViewer/LibWchar2/commit/5d4d44a0ae30ff188900fbb34a27dfc92bc23438) update docs 2018-08-03 (*03 August 2018 09:25*)
10-
- [#5](https://github.com/ClnViewer/LibWchar2/commit/6aeea68a7da4681efcdf4fc2dc0d7b536c3fac77) add patch to TinyDir 2018-08-03 (*03 August 2018 07:23*)
11-
- [#6](https://github.com/ClnViewer/LibWchar2/commit/a7941dc7f4ad0d3fa732259cc3e267cc6eb7106f) add patch to TinyDir 2018-08-03 (*03 August 2018 07:08*)
12-
- [#7](https://github.com/ClnViewer/LibWchar2/commit/f5aa75879f508ed5f8044d7bd0914c34b2fd7fa4) add patch to TinyDir 2018-08-03 (*03 August 2018 07:07*)
13-
- [#8](https://github.com/ClnViewer/LibWchar2/commit/1e4bc9ddba7fa5b5c6030650778bd0a141ebf3db) add patch to TinyDir 2018-08-03 (*03 August 2018 07:02*)
14-
- [#9](https://github.com/ClnViewer/LibWchar2/commit/af15d3673787dc2b042098b58eb547c98940268f) add patch to TinyDir 2018-08-03 (*03 August 2018 06:59*)
15-
- [#10](https://github.com/ClnViewer/LibWchar2/commit/df491411ae1480f73f6d24ab689aabea78db3ec0) add patch to TinyDir 2018-08-03 (*03 August 2018 06:54*)
16-
- [#11](https://github.com/ClnViewer/LibWchar2/commit/a6e8ef891c970ed65841503b86283fbc30631f3b) update docs 2018-08-02 (*02 August 2018 18:24*)
17-
- [#12](https://github.com/ClnViewer/LibWchar2/commit/36c9003d1676dd34a2f0325f925807eb07a42bf9) add directory traversing fuctions 2018-08-02 (*01 August 2018 23:35*)
18-
- [#13](https://github.com/ClnViewer/LibWchar2/commit/7e9839eb2a49cf810640730af959fb16e88decb7) add library version function 2018-07-31 (*31 July 2018 01:19*)
7+
- [#2](https://github.com/ClnViewer/LibWchar2/commit/459a1d81a4d90723a9b9c5414727e9571de475fd) add wreaddir_cb function 2018-08-04 (*04 August 2018 17:39*)
8+
- [#3](https://github.com/ClnViewer/LibWchar2/commit/d4407bbaef5b5441e53920394a2c649ce4bb1f27) update docs 2018-08-03 (*03 August 2018 15:25*)
9+
- [#4](https://github.com/ClnViewer/LibWchar2/commit/671c4efa832430b41406f56270df00bf7adfb1bf) update tinyDir tests 2018-08-03 (*03 August 2018 15:03*)
10+
- [#5](https://github.com/ClnViewer/LibWchar2/commit/5d4d44a0ae30ff188900fbb34a27dfc92bc23438) update docs 2018-08-03 (*03 August 2018 09:25*)
11+
- [#6](https://github.com/ClnViewer/LibWchar2/commit/6aeea68a7da4681efcdf4fc2dc0d7b536c3fac77) add patch to TinyDir 2018-08-03 (*03 August 2018 07:23*)
12+
- [#7](https://github.com/ClnViewer/LibWchar2/commit/a7941dc7f4ad0d3fa732259cc3e267cc6eb7106f) add patch to TinyDir 2018-08-03 (*03 August 2018 07:08*)
13+
- [#8](https://github.com/ClnViewer/LibWchar2/commit/f5aa75879f508ed5f8044d7bd0914c34b2fd7fa4) add patch to TinyDir 2018-08-03 (*03 August 2018 07:07*)
14+
- [#9](https://github.com/ClnViewer/LibWchar2/commit/1e4bc9ddba7fa5b5c6030650778bd0a141ebf3db) add patch to TinyDir 2018-08-03 (*03 August 2018 07:02*)
15+
- [#10](https://github.com/ClnViewer/LibWchar2/commit/af15d3673787dc2b042098b58eb547c98940268f) add patch to TinyDir 2018-08-03 (*03 August 2018 06:59*)
16+
- [#11](https://github.com/ClnViewer/LibWchar2/commit/df491411ae1480f73f6d24ab689aabea78db3ec0) add patch to TinyDir 2018-08-03 (*03 August 2018 06:54*)
17+
- [#12](https://github.com/ClnViewer/LibWchar2/commit/a6e8ef891c970ed65841503b86283fbc30631f3b) update docs 2018-08-02 (*02 August 2018 18:24*)
18+
- [#13](https://github.com/ClnViewer/LibWchar2/commit/36c9003d1676dd34a2f0325f925807eb07a42bf9) add directory traversing fuctions 2018-08-02 (*01 August 2018 23:35*)

docs/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
DOXYFILE_ENCODING = UTF-8
3-
PROJECT_NAME = "libwchar2 0.0.7"
3+
PROJECT_NAME = "libwchar2 0.0.8"
44
INPUT = include/wchar2.h docs/doxman
55
OUTPUT_DIRECTORY = docs
66
EXAMPLE_PATH = ./ docs/doxman

docs/man-license.dox

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11

22
\par LibWchar2 information
33

4-
\version libwchar2 0.0.7
5-
\date Wed Aug 01 2018
4+
\version libwchar2 0.0.8
5+
\date Sun Aug 05 2018
66
\author (c) PS 2018-2018
77

88
\par Manual author and license

0 commit comments

Comments
 (0)