Skip to content

Commit f06bc15

Browse files
committed
Getting ready 1.19 release.
1 parent 9d4b141 commit f06bc15

File tree

8 files changed

+51
-46
lines changed

8 files changed

+51
-46
lines changed

Changelog

Lines changed: 43 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,68 +1,73 @@
1+
2015-11-25 Martin Dvorak <[email protected]>
2+
3+
* Released v1.19 - Stabilization release
4+
* This minor release brings fixes of regexp mode.
5+
16
2015-11-23 Martin Dvorak <[email protected]>
27

3-
* Released v1.18 - Blacklists, Debian and Gentoo
4-
* This minor release bring blacklist configurable from
5-
a file (commands that are ignored). It also improves
6-
Debian and Gentoo distribution builders.
8+
* Released v1.18 - Blacklists, Debian and Gentoo
9+
* This minor release bring blacklist configurable from
10+
a file (commands that are ignored). It also improves
11+
Debian and Gentoo distribution builders.
712

813
2015-05-09 Martin Dvorak <[email protected]>
914

10-
* Released v1.17 - History Management and Color Profiles
11-
* This release brings improvements and stabilization
12-
of the history management along with terminal
13-
background agnostic color profiles.
15+
* Released v1.17 - History Management and Color Profiles
16+
* This release brings improvements and stabilization
17+
of the history management along with terminal
18+
background agnostic color profiles.
1419

1520
2015-01-08 Martin Dvorak <[email protected]>
1621

17-
* Released v1.15 - First Item Autoselect and Vim Binding
18-
* Minor release that brings first history item
19-
autoselect on empty prompt selection, Vim style
20-
history navigation binding and several bug fixes.
22+
* Released v1.15 - First Item Autoselect and Vim Binding
23+
* Minor release that brings first history item
24+
autoselect on empty prompt selection, Vim style
25+
history navigation binding and several bug fixes.
2126

2227
2014-10-29 Martin Dvorak <[email protected]>
2328

24-
* Released v1.14 - Keyboard Search and Improved Highlighting
25-
* New release brings keyboard based search i.e. matching
26-
of history entries by occurrence of words in arbitrary
27-
order.
29+
* Released v1.14 - Keyboard Search and Improved Highlighting
30+
* New release brings keyboard based search i.e. matching
31+
of history entries by occurrence of words in arbitrary
32+
order.
2833
* In addition highlighting of matching segments in history
29-
entries has been improved.
34+
entries has been improved.
3035

3136
2014-09-11 Martin Dvorak <[email protected]>
3237

33-
* Released v1.13 - Transparent terminal and Internationalization
34-
* New release brings support for transparent terminals.
35-
* Internationalization problems were finally solved - use
36-
of Czech, German, Chinese, ... special characters w/
37-
and w/o diacritics should be smooth.
38+
* Released v1.13 - Transparent terminal and Internationalization
39+
* New release brings support for transparent terminals.
40+
* Internationalization problems were finally solved - use
41+
of Czech, German, Chinese, ... special characters w/
42+
and w/o diacritics should be smooth.
3843

3944
2014-05-05 Martin Dvorak <[email protected]>
4045

41-
* Released v1.12 - Regexp
42-
* New release brings regexp based filtering of command
43-
history. In addition it's possible to use HSTR in
44-
non-interactive mode i.e. filtered output is written
45-
to standard output. openSUSE became newly supported
46-
distribution.
46+
* Released v1.12 - Regexp
47+
* New release brings regexp based filtering of command
48+
history. In addition it's possible to use HSTR in
49+
non-interactive mode i.e. filtered output is written
50+
to standard output. openSUSE became newly supported
51+
distribution.
4752

4853
2014-04-14 Martin Dvorak <[email protected]>
4954

50-
* Released v1.10 - Favorites
51-
* Major release that brings favorites - favorite
52-
commands can be bookmarked for later use and managed
53-
in a brand new view
55+
* Released v1.10 - Favorites
56+
* Major release that brings favorites - favorite
57+
commands can be bookmarked for later use and managed
58+
in a brand new view
5459

5560
2014-03-16 Martin Dvorak <[email protected]>
5661

57-
* Released v1.3 - Radix Sort Stabilization
58-
* A stabilization release that enables loading of huge
59-
history files and makes internal radix sort
60-
implementation more efficient.
62+
* Released v1.3 - Radix Sort Stabilization
63+
* A stabilization release that enables loading of huge
64+
history files and makes internal radix sort
65+
implementation more efficient.
6166

6267
2014-01-25 Martin Dvorak <[email protected]>
6368

64-
* Released v1.0 - The First Stable Release
69+
* Released v1.0 - The First Stable Release
6570

6671
2013-12-03 Martin Dvorak <[email protected]>
6772

68-
* Released v0.2 - Initial Release
73+
* Released v0.2 - Initial Release

PKGBUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Maintainer: Christian Wieden <wiedenchr at gmail dot com
22
# Contributer: Ricardo Band <me at xengi dot de>
33
pkgname=hh
4-
pkgver=1.18
4+
pkgver=1.19
55
pkgrel=1
66
pkgdesc="A command line utility that brings improved BASH command completion from the history. It aims to make completion easier and more efficient than Ctrl-r."
77
arch=('any')

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
AC_PREREQ([2.69])
1919

20-
AC_INIT(hh, 1.18, [email protected])
20+
AC_INIT(hh, 1.19, [email protected])
2121
AC_CONFIG_FILES([Makefile src/Makefile man/Makefile])
2222

2323
# Checks for src dir existence.

dist/debian-env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Debian release: https://wiki.debian.org/IntroDebianPackaging
44

5-
export HHVERSION="1.18.0"
5+
export HHVERSION="1.19.0"
66
#export HHFULLVERSION=${HHVERSION}-1.0 # NMU upload
77
export HHFULLVERSION=${HHVERSION}-1 # mantainer upload
88
export HH=hstr_${HHVERSION}

dist/github-env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ export NOW=`date +%Y-%m-%d--%H-%M-%S`
44
export GH_RELEASE_DIR=~/p/hstr/release
55
export GH_DISTRO_DIR=${GH_RELEASE_DIR}/release-${NOW}
66

7-
export HHVERSION="1.18"
7+
export HHVERSION="1.19"
88

99
# eof

dist/ubuntu-make-all-distros.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
# - run this script from ~/p/hstr/launchpad
1111

1212
export HHBZRMSG="History management and color themes fixes."
13-
export VERSION=1.18.
14-
export MINOR=2
13+
export VERSION=1.19.
14+
export MINOR=1
1515

1616
# precise quantal saucy precise utopic / trusty vivid wily
1717
for DISTRO in trusty vivid wily

pad.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
</Company_Info>
5252
<Program_Info>
5353
<Program_Name>HSTR</Program_Name>
54-
<Program_Version>1.18</Program_Version>
54+
<Program_Version>1.19</Program_Version>
5555
<Program_Release_Month>05</Program_Release_Month>
5656
<Program_Release_Day>09</Program_Release_Day>
5757
<Program_Release_Year>2015</Program_Release_Year>

src/hstr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ static const char *HELP_STRING=
210210
"\n";
211211

212212
static const char *VERSION_STRING=
213-
"hh version \"1.18\""
213+
"hh version \"1.19\""
214214
"\n build \""__DATE__" " __TIME__"\""
215215
"\n";
216216

0 commit comments

Comments
 (0)