Skip to content

Commit

Permalink
2.3.0 release version references and changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
dvorka committed Nov 19, 2020
1 parent db37132 commit 8ff329e
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 13 deletions.
4 changes: 4 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2020-11-19 Martin Dvorak <[email protected]>

* Released v2.3.0 - zsh timestamp extended history parsing and SEGFAULT fixes.

2019-12-21 Martin Dvorak <[email protected]>

* Released v2.2.0 - toggle visibility/move help lines (Fabian Saldias),
Expand Down
2 changes: 1 addition & 1 deletion INSTALLATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Alternatively you can download and install `.deb` archive from [GitHub releases]
section of the project:

```bash
wget -O hstr.deb https://github.com/dvorka/hstr/releases/download/2.2/hstr_<major>.<minor>.<revision>-1_amd64.deb
wget -O hstr.deb https://github.com/dvorka/hstr/releases/download/2.3/hstr_<major>.<minor>.<revision>-1_amd64.deb

# dependencies:
apt-get install libncursesw5 libtinfo5
Expand Down
2 changes: 1 addition & 1 deletion PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Contributor: Busindre <busilezas at busindre.com>

pkgname=hstr
pkgver=2.2
pkgver=2.3
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')
Expand Down
4 changes: 2 additions & 2 deletions build/debian/make-deb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@ then
exit 1
fi

export ARG_BAZAAR_MSG="HSTR 2.2.0"
export ARG_VERSION="2.2.0"
export ARG_BAZAAR_MSG="HSTR 2.3.0"
export ARG_VERSION="2.3.0"

# Debian releases: https://www.debian.org/releases/
# 6/7/8/9/10: squeeze wheezy jessie stretch buster
Expand Down
2 changes: 1 addition & 1 deletion build/fedora/rpm-from-deb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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="2.2.0"
export MFVERSION="2.3.0"
export MFPRJNAME="hstr-${MFVERSION}"
export AMD64NAME="hstr_${MFVERSION}-1_amd64"
export I386NAME="hstr_${MFVERSION}-1_i386"
Expand Down
2 changes: 1 addition & 1 deletion build/tarball/tarball-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

export SCRIPT_HOME=`pwd`

export HSTR_VERSION="2.2.0"
export HSTR_VERSION="2.3.0"

export NOW=`date +%Y-%m-%d--%H-%M-%S`
export GH_RELEASE_DIR=~/p/hstr/release
Expand Down
8 changes: 4 additions & 4 deletions build/ubuntu/launchpad-make-all-releases.sh
Original file line number Diff line number Diff line change
Expand Up @@ -163,14 +163,14 @@ then
exit 1
fi

export ARG_BAZAAR_MSG="Release 2.2"
export ARG_MAJOR_VERSION=2.2.
export ARG_MINOR_VERSION=5 # minor version is incremented for every Ubuntu version
export ARG_BAZAAR_MSG="Release 2.3"
export ARG_MAJOR_VERSION=2.3.
export ARG_MINOR_VERSION=0 # minor version is incremented for every Ubuntu version

# https://wiki.ubuntu.com/Releases
# old: precise quantal saucy precise utopic vivid wily yakkety artful cosmic
# current: trusty xenial bionic disco eoan focal
for UBUNTU_VERSION in focal
for UBUNTU_VERSION in bionic
do
echo "Releasing HSTR for Ubuntu version: ${UBUNTU_VERSION}"
releaseForParticularUbuntuVersion ${UBUNTU_VERSION} ${ARG_MAJOR_VERSION}${ARG_MINOR_VERSION} "${ARG_BAZAAR_MSG}"
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

AC_PREREQ([2.69])

AC_INIT(hstr, 2.2.0, [email protected])
AC_INIT(hstr, 2.3.0, [email protected])
AC_CONFIG_FILES([Makefile src/Makefile man/Makefile])

# Check src dir existence.
Expand Down
2 changes: 1 addition & 1 deletion pad.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
</Company_Info>
<Program_Info>
<Program_Name>HSTR</Program_Name>
<Program_Version>2.2.0</Program_Version>
<Program_Version>2.3.0</Program_Version>
<Program_Release_Month>01</Program_Release_Month>
<Program_Release_Day>01</Program_Release_Day>
<Program_Release_Year>2020</Program_Release_Year>
Expand Down
2 changes: 1 addition & 1 deletion src/hstr.c
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@

// major.minor.revision
static const char* VERSION_STRING=
"hstr version \"2.2.0\" (2019-12-21T08:47:00)"
"hstr version \"2.3.0\" (2020-11-19T07:41:00)"
"\n";

static const char* HSTR_VIEW_LABELS[]={
Expand Down

0 comments on commit 8ff329e

Please sign in to comment.