mirror of
https://github.com/dvorka/hstr.git
synced 2024-12-27 01:42:23 +08:00
Getting ready for 1.28 release.
This commit is contained in:
parent
d14480e0f1
commit
480375f774
9 changed files with 16 additions and 12 deletions
|
@ -1,3 +1,7 @@
|
|||
2018-08-21 Martin Dvorak <martin.dvorak@mindforger.com>
|
||||
|
||||
* Released v1.28.0 - All memory leaks fixed, add Bash autocomplete.
|
||||
|
||||
2018-08-13 Martin Dvorak <martin.dvorak@mindforger.com>
|
||||
|
||||
* Released v1.27.0 - Long lines support, QtCreator IDE migration, all build scripts rewritten,
|
||||
|
|
2
PKGBUILD
2
PKGBUILD
|
@ -3,7 +3,7 @@
|
|||
# Contributor: Filip Szymański <fszymanski at, fedoraproject.org>
|
||||
|
||||
pkgname=hstr
|
||||
pkgver=1.27
|
||||
pkgver=1.28
|
||||
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')
|
||||
|
|
|
@ -29,8 +29,8 @@ echo "See 'MindForger Release Guide#Debian and my PPA' notebook for detailed ste
|
|||
#aptly repo show mindforger-com-ppa
|
||||
|
||||
# add .deb to repository
|
||||
#aptly repo add mindforger-com-ppa hstr_1.27.0-1_amd64.deb
|
||||
#aptly repo remove mindforger-com-ppa hstr_1.27.0-1_amd64
|
||||
#aptly repo add mindforger-com-ppa hstr_1.28.0-1_amd64.deb
|
||||
#aptly repo remove mindforger-com-ppa hstr_1.28.0-1_amd64
|
||||
|
||||
# show repo content w/ packages
|
||||
#aptly repo show -with-packages mindforger-com-ppa
|
||||
|
@ -42,7 +42,7 @@ echo "See 'MindForger Release Guide#Debian and my PPA' notebook for detailed ste
|
|||
#aptly snapshot drop mf-test-snapshot
|
||||
|
||||
# create snapshot in the time of release - note release NAME
|
||||
#aptly snapshot create hstr-1.27.0 from repo mindforger-com-ppa
|
||||
#aptly snapshot create hstr-1.28.0 from repo mindforger-com-ppa
|
||||
|
||||
# show published snapshots
|
||||
#aptly publish list
|
||||
|
|
|
@ -148,8 +148,8 @@ then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
export ARG_BAZAAR_MSG="HSTR 1.27.0"
|
||||
export ARG_VERSION="1.27.0"
|
||||
export ARG_BAZAAR_MSG="HSTR 1.28.0"
|
||||
export ARG_VERSION="1.28.0"
|
||||
|
||||
# Debian releases: https://www.debian.org/releases/
|
||||
# 6/7/8/9/10: squeeze wheezy jessie stretch buster
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
# This script is available from http://www.mindforger.com/fedora/fedora-rpm-from-deb.sh
|
||||
# to be easily available in VMs
|
||||
|
||||
export MFVERSION="1.27.0"
|
||||
export MFVERSION="1.28.0"
|
||||
export MFPRJNAME="hstr-${MFVERSION}"
|
||||
export AMD64NAME="hstr_${MFVERSION}-1_amd64"
|
||||
export I386NAME="hstr_${MFVERSION}-1_i386"
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
export SCRIPT_HOME=`pwd`
|
||||
|
||||
export HH_VERSION="1.27.0"
|
||||
export HH_VERSION="1.28.0"
|
||||
|
||||
export NOW=`date +%Y-%m-%d--%H-%M-%S`
|
||||
export GH_RELEASE_DIR=~/p/hstr/release
|
||||
|
|
|
@ -162,8 +162,8 @@ then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
export ARG_BAZAAR_MSG="Release 1.27"
|
||||
export ARG_MAJOR_VERSION=1.27.
|
||||
export ARG_BAZAAR_MSG="Release 1.28"
|
||||
export ARG_MAJOR_VERSION=1.28.
|
||||
export ARG_MINOR_VERSION=0 # minor version is incremented for every Ubuntu version
|
||||
|
||||
# https://wiki.ubuntu.com/Releases
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
AC_PREREQ([2.69])
|
||||
|
||||
AC_INIT(hh, 1.27.0, martin.dvorak@mindforger.com)
|
||||
AC_INIT(hh, 1.28.0, martin.dvorak@mindforger.com)
|
||||
AC_CONFIG_FILES([Makefile src/Makefile man/Makefile])
|
||||
|
||||
# Check src dir existence.
|
||||
|
|
|
@ -132,7 +132,7 @@
|
|||
|
||||
// major.minor.revision
|
||||
static const char* VERSION_STRING=
|
||||
"hh version \"1.27.0\" (2018-08-13T17:00:00)"
|
||||
"hh version \"1.28.0\" (2018-08-21T13:00:00)"
|
||||
"\n";
|
||||
|
||||
static const char* HH_VIEW_LABELS[]={
|
||||
|
|
Loading…
Reference in a new issue