mirror of
https://github.com/dvorka/hstr.git
synced 2025-01-28 01:37:55 +08:00
Getting ready 1.19 release.
This commit is contained in:
parent
9d4b141569
commit
f06bc1522c
8 changed files with 51 additions and 46 deletions
|
@ -1,3 +1,8 @@
|
|||
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
|
||||
|
|
2
PKGBUILD
2
PKGBUILD
|
@ -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')
|
||||
|
|
|
@ -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
2
dist/debian-env.sh
vendored
|
@ -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
2
dist/github-env.sh
vendored
|
@ -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
|
||||
|
|
4
dist/ubuntu-make-all-distros.sh
vendored
4
dist/ubuntu-make-all-distros.sh
vendored
|
@ -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
|
||||
|
|
2
pad.xml
2
pad.xml
|
@ -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>
|
||||
|
|
|
@ -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";
|
||||
|
||||
|
|
Loading…
Reference in a new issue