Skip to content

Commit

Permalink
Get ready for release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rocky committed Nov 4, 2019
1 parent 5bdc4c2 commit 03b7919
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 7 deletions.
12 changes: 11 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
2019-11-09 Version 1.0.0 - Day of the Dead
2019-11-04 Version 1.1.0
------------------------

- Add "debug" command
- Make "step" honor "set different" setting, Go over "set different" RsT doc
- Was errondeoulsy lower-casing RsT
- Remove obsolete "set force"
- add "set editing gmacs"; it's a ksh'ism
- Remove COLORFGBG message from term-background.sh

2019-11-01 Version 1.0.0 - Day of the Dead
------------------------------------------

First 1.0.0 release (semantic versioning now possibile)
Expand Down
6 changes: 3 additions & 3 deletions admin/how-to-make-a-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,22 @@

- Edit from `configure.ac`'s release name. If we have this in `configure.ac`:
```
AC_INIT([kshdb],[1.0.0],[rocky@gnu.org])
AC_INIT([kshdb],[1.1.0],[rocky@gnu.org])
^^^^^
```

then:

```console
$ export KSHDB_VERSION='1.0.0'
$ export KSHDB_VERSION='1.1.0'
$ ./autogen.sh && make && make check
```

- Commit changes:

```console
$ git commit -m"Get ready for release $KSHDB_VERSION" .
$ make Changelog
$ rm ChangeLog; make ChangeLog
```

- Go over `ChangeLog` and add to `NEWS.md`. Update date of release.
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
dnl Configure script for Shell debugger
define(DEBUGGER, kshdb)
define(POSIXSHELL, ksh)
AC_INIT([kshdb],[1.0.0],[rocky@gnu.org])
AC_INIT([kshdb],[1.1.0],[rocky@gnu.org])
AM_MAINTAINER_MODE
AM_INIT_AUTOMAKE([foreign])

Expand Down
5 changes: 3 additions & 2 deletions test/unit/test-cmd-complete.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
test_cmd_complete()
{
output=$(_Dbg_do_complete d)
assertEquals 'delete
assertEquals 'debug
delete
disable
display
down' "$output"
Expand All @@ -25,7 +26,7 @@ abs_top_srcdir=${abs_top_srcdir%%/}/
. ${abs_top_srcdir}command/complete.sh
set -- # reset $# so shunit2 doesn't get confused.

for _Dbg_file in ${abs_top_srcdir}command/d*.sh ; do
for _Dbg_file in ${abs_top_srcdir}command/d*.sh ; do
source $_Dbg_file
done

Expand Down

0 comments on commit 03b7919

Please # to comment.