Getting ready 1.19 release.

This commit is contained in:
Martin Dvorak 2015-11-25 21:29:44 +01:00
parent 9d4b141569
commit f06bc1522c
8 changed files with 51 additions and 46 deletions

View file

@ -1,68 +1,73 @@
2015-11-25 Martin Dvorak <martin.dvorak@mindforger.com>
* Released v1.19 - Stabilization release
* This minor release brings fixes of regexp mode.
2015-11-23 Martin Dvorak <martin.dvorak@mindforger.com>
* Released v1.18 - Blacklists, Debian and Gentoo
* This minor release bring blacklist configurable from
a file (commands that are ignored). It also improves
Debian and Gentoo distribution builders.
* Released v1.18 - Blacklists, Debian and Gentoo
* This minor release bring blacklist configurable from
a file (commands that are ignored). It also improves
Debian and Gentoo distribution builders.
2015-05-09 Martin Dvorak <martin.dvorak@mindforger.com>
* Released v1.17 - History Management and Color Profiles
* This release brings improvements and stabilization
of the history management along with terminal
background agnostic color profiles.
* Released v1.17 - History Management and Color Profiles
* This release brings improvements and stabilization
of the history management along with terminal
background agnostic color profiles.
2015-01-08 Martin Dvorak <martin.dvorak@mindforger.com>
* Released v1.15 - First Item Autoselect and Vim Binding
* Minor release that brings first history item
autoselect on empty prompt selection, Vim style
history navigation binding and several bug fixes.
* Released v1.15 - First Item Autoselect and Vim Binding
* Minor release that brings first history item
autoselect on empty prompt selection, Vim style
history navigation binding and several bug fixes.
2014-10-29 Martin Dvorak <martin.dvorak@mindforger.com>
* Released v1.14 - Keyboard Search and Improved Highlighting
* New release brings keyboard based search i.e. matching
of history entries by occurrence of words in arbitrary
order.
* Released v1.14 - Keyboard Search and Improved Highlighting
* New release brings keyboard based search i.e. matching
of history entries by occurrence of words in arbitrary
order.
* In addition highlighting of matching segments in history
entries has been improved.
entries has been improved.
2014-09-11 Martin Dvorak <martin.dvorak@mindforger.com>
* Released v1.13 - Transparent terminal and Internationalization
* New release brings support for transparent terminals.
* Internationalization problems were finally solved - use
of Czech, German, Chinese, ... special characters w/
and w/o diacritics should be smooth.
* Released v1.13 - Transparent terminal and Internationalization
* New release brings support for transparent terminals.
* Internationalization problems were finally solved - use
of Czech, German, Chinese, ... special characters w/
and w/o diacritics should be smooth.
2014-05-05 Martin Dvorak <martin.dvorak@mindforger.com>
* Released v1.12 - Regexp
* New release brings regexp based filtering of command
history. In addition it's possible to use HSTR in
non-interactive mode i.e. filtered output is written
to standard output. openSUSE became newly supported
distribution.
* Released v1.12 - Regexp
* New release brings regexp based filtering of command
history. In addition it's possible to use HSTR in
non-interactive mode i.e. filtered output is written
to standard output. openSUSE became newly supported
distribution.
2014-04-14 Martin Dvorak <martin.dvorak@mindforger.com>
* Released v1.10 - Favorites
* Major release that brings favorites - favorite
commands can be bookmarked for later use and managed
in a brand new view
* Released v1.10 - Favorites
* Major release that brings favorites - favorite
commands can be bookmarked for later use and managed
in a brand new view
2014-03-16 Martin Dvorak <martin.dvorak@mindforger.com>
* Released v1.3 - Radix Sort Stabilization
* A stabilization release that enables loading of huge
history files and makes internal radix sort
implementation more efficient.
* Released v1.3 - Radix Sort Stabilization
* A stabilization release that enables loading of huge
history files and makes internal radix sort
implementation more efficient.
2014-01-25 Martin Dvorak <martin.dvorak@mindforger.com>
* Released v1.0 - The First Stable Release
* Released v1.0 - The First Stable Release
2013-12-03 Martin Dvorak <martin.dvorak@mindforger.com>
* Released v0.2 - Initial Release
* Released v0.2 - Initial Release

View file

@ -1,7 +1,7 @@
# Maintainer: Christian Wieden <wiedenchr at gmail dot com
# Contributer: Ricardo Band <me at xengi dot de>
pkgname=hh
pkgver=1.18
pkgver=1.19
pkgrel=1
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."
arch=('any')

View file

@ -17,7 +17,7 @@
AC_PREREQ([2.69])
AC_INIT(hh, 1.18, martin.dvorak@mindforger.com)
AC_INIT(hh, 1.19, martin.dvorak@mindforger.com)
AC_CONFIG_FILES([Makefile src/Makefile man/Makefile])
# Checks for src dir existence.

2
dist/debian-env.sh vendored
View file

@ -2,7 +2,7 @@
# Debian release: https://wiki.debian.org/IntroDebianPackaging
export HHVERSION="1.18.0"
export HHVERSION="1.19.0"
#export HHFULLVERSION=${HHVERSION}-1.0 # NMU upload
export HHFULLVERSION=${HHVERSION}-1 # mantainer upload
export HH=hstr_${HHVERSION}

2
dist/github-env.sh vendored
View file

@ -4,6 +4,6 @@ export NOW=`date +%Y-%m-%d--%H-%M-%S`
export GH_RELEASE_DIR=~/p/hstr/release
export GH_DISTRO_DIR=${GH_RELEASE_DIR}/release-${NOW}
export HHVERSION="1.18"
export HHVERSION="1.19"
# eof

View file

@ -10,8 +10,8 @@
# - run this script from ~/p/hstr/launchpad
export HHBZRMSG="History management and color themes fixes."
export VERSION=1.18.
export MINOR=2
export VERSION=1.19.
export MINOR=1
# precise quantal saucy precise utopic / trusty vivid wily
for DISTRO in trusty vivid wily

View file

@ -51,7 +51,7 @@
</Company_Info>
<Program_Info>
<Program_Name>HSTR</Program_Name>
<Program_Version>1.18</Program_Version>
<Program_Version>1.19</Program_Version>
<Program_Release_Month>05</Program_Release_Month>
<Program_Release_Day>09</Program_Release_Day>
<Program_Release_Year>2015</Program_Release_Year>

View file

@ -210,7 +210,7 @@ static const char *HELP_STRING=
"\n";
static const char *VERSION_STRING=
"hh version \"1.18\""
"hh version \"1.19\""
"\n build \""__DATE__" " __TIME__"\""
"\n";