Skip to content

Commit 55780f7

Browse files
committed
Fixed ByteWords wordlist alphabetization error.
* Fixed [ByteWords wordlist alphabetization error](BlockchainCommons/Research#45).
1 parent 603c21c commit 55780f7

3 files changed

Lines changed: 14 additions & 10 deletions

File tree

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,10 @@ You can import a key by running the following command with that individual’s f
141141

142142
## Version History
143143

144+
### 0.2.0, 19/04/2020
145+
146+
* Fixed [ByteWords wordlist alphabetization error](https://github.com/BlockchainCommons/Research/issues/45).
147+
144148
### 0.1.0, 08/09/2020
145149

146150
* Initial testing release.

configure

Lines changed: 9 additions & 9 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 bc-ur 0.1.0.
3+
# Generated by GNU Autoconf 2.69 for bc-ur 0.2.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='bc-ur'
579579
PACKAGE_TARNAME='bc-ur'
580-
PACKAGE_VERSION='0.1.0'
581-
PACKAGE_STRING='bc-ur 0.1.0'
580+
PACKAGE_VERSION='0.2.0'
581+
PACKAGE_STRING='bc-ur 0.2.0'
582582
PACKAGE_BUGREPORT=''
583583
PACKAGE_URL=''
584584

@@ -1231,7 +1231,7 @@ if test "$ac_init_help" = "long"; then
12311231
# Omit some internal or obsolete options to make the list less imposing.
12321232
# This message is too long to be a string in the A/UX 3.1 sh.
12331233
cat <<_ACEOF
1234-
\`configure' configures bc-ur 0.1.0 to adapt to many kinds of systems.
1234+
\`configure' configures bc-ur 0.2.0 to adapt to many kinds of systems.
12351235
12361236
Usage: $0 [OPTION]... [VAR=VALUE]...
12371237
@@ -1292,7 +1292,7 @@ fi
12921292

12931293
if test -n "$ac_init_help"; then
12941294
case $ac_init_help in
1295-
short | recursive ) echo "Configuration of bc-ur 0.1.0:";;
1295+
short | recursive ) echo "Configuration of bc-ur 0.2.0:";;
12961296
esac
12971297
cat <<\_ACEOF
12981298
@@ -1374,7 +1374,7 @@ fi
13741374
test -n "$ac_init_help" && exit $ac_status
13751375
if $ac_init_version; then
13761376
cat <<\_ACEOF
1377-
bc-ur configure 0.1.0
1377+
bc-ur configure 0.2.0
13781378
generated by GNU Autoconf 2.69
13791379
13801380
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1961,7 +1961,7 @@ cat >config.log <<_ACEOF
19611961
This file contains any messages produced by compilers while
19621962
running configure, to aid debugging if configure makes a mistake.
19631963
1964-
It was created by bc-ur $as_me 0.1.0, which was
1964+
It was created by bc-ur $as_me 0.2.0, which was
19651965
generated by GNU Autoconf 2.69. Invocation command line was
19661966
19671967
$ $0 $@
@@ -4681,7 +4681,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
46814681
# report actual input values of CONFIG_FILES etc. instead of their
46824682
# values after options handling.
46834683
ac_log="
4684-
This file was extended by bc-ur $as_me 0.1.0, which was
4684+
This file was extended by bc-ur $as_me 0.2.0, which was
46854685
generated by GNU Autoconf 2.69. Invocation command line was
46864686
46874687
CONFIG_FILES = $CONFIG_FILES
@@ -4743,7 +4743,7 @@ _ACEOF
47434743
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
47444744
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
47454745
ac_cs_version="\\
4746-
bc-ur config.status 0.1.0
4746+
bc-ur config.status 0.2.0
47474747
configured by $0, generated by GNU Autoconf 2.69,
47484748
with options \\"\$ac_cs_config\\"
47494749

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.69])
5-
AC_INIT([bc-ur], [0.1.0])
5+
AC_INIT([bc-ur], [0.2.0])
66
AC_CONFIG_SRCDIR([src/ur.cpp])
77
AC_CONFIG_HEADERS([config.h])
88

0 commit comments

Comments
 (0)