Skip to content

Commit ac0f083

Browse files
committed
v1.6.0
1 parent a5e560a commit ac0f083

File tree

4 files changed

+22
-13
lines changed

4 files changed

+22
-13
lines changed

NEWS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
Reqflow 1.6.0, 11 Mar 2019
2+
- Option -type accepts only the following arguments: txt, odt, docx, xml, html, pdf
3+
- When file type detection is based on the filename extension:
4+
* the detection is case insensitive
5+
* the known extensions are those accepted by -type, and "htm"
6+
* text is the default (when the extension is unkown)
7+
18
Reqflow 1.5.3, 2 Oct 2018
29
- file extensions .ad, .adoc, .asc, .asciidoc, .md known as text documents
310

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.69 for Reqflow 1.5.3.
3+
# Generated by GNU Autoconf 2.69 for Reqflow 1.6.0.
44
#
55
#
66
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
@@ -577,8 +577,8 @@ MAKEFLAGS=
577577
# Identity of this package.
578578
PACKAGE_NAME='Reqflow'
579579
PACKAGE_TARNAME='reqflow'
580-
PACKAGE_VERSION='1.5.3'
581-
PACKAGE_STRING='Reqflow 1.5.3'
580+
PACKAGE_VERSION='1.6.0'
581+
PACKAGE_STRING='Reqflow 1.6.0'
582582
PACKAGE_BUGREPORT=''
583583
PACKAGE_URL='http://goeb.github.io/reqflow'
584584

@@ -1331,7 +1331,7 @@ if test "$ac_init_help" = "long"; then
13311331
# Omit some internal or obsolete options to make the list less imposing.
13321332
# This message is too long to be a string in the A/UX 3.1 sh.
13331333
cat <<_ACEOF
1334-
\`configure' configures Reqflow 1.5.3 to adapt to many kinds of systems.
1334+
\`configure' configures Reqflow 1.6.0 to adapt to many kinds of systems.
13351335
13361336
Usage: $0 [OPTION]... [VAR=VALUE]...
13371337
@@ -1403,7 +1403,7 @@ fi
14031403

14041404
if test -n "$ac_init_help"; then
14051405
case $ac_init_help in
1406-
short | recursive ) echo "Configuration of Reqflow 1.5.3:";;
1406+
short | recursive ) echo "Configuration of Reqflow 1.6.0:";;
14071407
esac
14081408
cat <<\_ACEOF
14091409
@@ -1515,7 +1515,7 @@ fi
15151515
test -n "$ac_init_help" && exit $ac_status
15161516
if $ac_init_version; then
15171517
cat <<\_ACEOF
1518-
Reqflow configure 1.5.3
1518+
Reqflow configure 1.6.0
15191519
generated by GNU Autoconf 2.69
15201520
15211521
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1972,7 +1972,7 @@ cat >config.log <<_ACEOF
19721972
This file contains any messages produced by compilers while
19731973
running configure, to aid debugging if configure makes a mistake.
19741974
1975-
It was created by Reqflow $as_me 1.5.3, which was
1975+
It was created by Reqflow $as_me 1.6.0, which was
19761976
generated by GNU Autoconf 2.69. Invocation command line was
19771977
19781978
$ $0 $@
@@ -2947,7 +2947,7 @@ fi
29472947
29482948
# Define the identity of the package.
29492949
PACKAGE='reqflow'
2950-
VERSION='1.5.3'
2950+
VERSION='1.6.0'
29512951
29522952
29532953
cat >>confdefs.h <<_ACEOF
@@ -6129,7 +6129,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
61296129
# report actual input values of CONFIG_FILES etc. instead of their
61306130
# values after options handling.
61316131
ac_log="
6132-
This file was extended by Reqflow $as_me 1.5.3, which was
6132+
This file was extended by Reqflow $as_me 1.6.0, which was
61336133
generated by GNU Autoconf 2.69. Invocation command line was
61346134
61356135
CONFIG_FILES = $CONFIG_FILES
@@ -6196,7 +6196,7 @@ _ACEOF
61966196
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
61976197
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
61986198
ac_cs_version="\\
6199-
Reqflow config.status 1.5.3
6199+
Reqflow config.status 1.6.0
62006200
configured by $0, generated by GNU Autoconf 2.69,
62016201
with options \\"\$ac_cs_config\\"
62026202

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ([2.63])
5-
AC_INIT([Reqflow], [1.5.3], [], [reqflow], [http://goeb.github.io/reqflow])
5+
AC_INIT([Reqflow], [1.6.0], [], [reqflow], [http://goeb.github.io/reqflow])
66
AC_CONFIG_HEADERS([src/config.h])
77
AC_CANONICAL_TARGET
88
AM_INIT_AUTOMAKE([-Wall -Werror subdir-objects])

docs/index.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ Reqflow is a free and open-source tool for traceability of requirements across d
55

66
## News
77

8-
- 2 Oct 2018: Reqflow v1.5.3 (see [Changes](https://raw.githubusercontent.com/goeb/reqflow/master/NEWS))
8+
- 11 Mar 2019: Reqflow v1.6.0 (see [Changes](https://raw.githubusercontent.com/goeb/reqflow/master/NEWS))
9+
- 2 Oct 2018: Reqflow v1.5.3
910
- 31 Oct 2017 Reqflow v1.5.2
1011
- 13 Feb 2017 Reqflow v1.5.1
1112
- 22 Nov 2016: Reqflow v1.5.0
@@ -47,13 +48,14 @@ Build From Source :
4748

4849
Latest stable:
4950

50-
* [reqflow-1.5.3-setup.exe](https://github.com/goeb/reqflow/releases/download/v1.5.3/reqflow-1.5.3-setup.exe)
51+
* [reqflow-1.6.0-setup.exe](https://github.com/goeb/reqflow/releases/download/v1.6.0/reqflow-1.6.0-setup.exe)
5152

5253

5354
Previous versions:
5455

5556
* [reqflow-1.5.1-setup.exe](https://github.com/goeb/reqflow/releases/download/v1.5.1/reqflow-1.5.1-setup.exe)
5657
* [reqflow-1.5.2-setup.exe](https://github.com/goeb/reqflow/releases/download/v1.5.2/reqflow-1.5.2-setup.exe)
58+
* [reqflow-1.5.3-setup.exe](https://github.com/goeb/reqflow/releases/download/v1.5.3/reqflow-1.5.3-setup.exe)
5759

5860
## Usage
5961

0 commit comments

Comments
 (0)