From fc366bc1f3780479db07c2bb92fb9c9a68dfc652 Mon Sep 17 00:00:00 2001 From: mbays Date: Sun, 6 Feb 2022 00:00:00 +0000 Subject: [PATCH] bump 0.1.10 --- CHANGELOG.gmi | 7 +++++++ CHANGELOG.md | 7 +++++++ Makefile | 2 +- Version.hs | 2 +- diohsc.cabal | 2 +- 5 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.gmi b/CHANGELOG.gmi index c609319..5acac10 100644 --- a/CHANGELOG.gmi +++ b/CHANGELOG.gmi @@ -2,6 +2,13 @@ This file covers only non-trivial user-visible changes; see the git log for full gory details. +# 0.1.10 +* Allow pre-fetched items in queue, with new "fetch" command to add them +* Add named queues, e.g. foo~ +* Implement notation for (n-from) last element of a list, e.g. _$, _$2, _5-$2 +* Run default action on a history item when going to it, e.g. with < +* Don't shell-quote explicit '%s' arguments, only implicit final argument + # 0.1.9 * Improve wrapping and paging with long words, wide chars, or thin terminals * Shell-quote arguments to 'browse' and '!' diff --git a/CHANGELOG.md b/CHANGELOG.md index c609319..5acac10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ This file covers only non-trivial user-visible changes; see the git log for full gory details. +# 0.1.10 +* Allow pre-fetched items in queue, with new "fetch" command to add them +* Add named queues, e.g. foo~ +* Implement notation for (n-from) last element of a list, e.g. _$, _$2, _5-$2 +* Run default action on a history item when going to it, e.g. with < +* Don't shell-quote explicit '%s' arguments, only implicit final argument + # 0.1.9 * Improve wrapping and paging with long words, wide chars, or thin terminals * Shell-quote arguments to 'browse' and '!' diff --git a/Makefile b/Makefile index ea357f6..694529d 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=0.1.9 +VERSION=0.1.10 GHCOPTS=-threaded -DICONV -DMAGIC -ignore-package regex-compat-tdfa diff --git a/Version.hs b/Version.hs index c4adef1..7c1790c 100644 --- a/Version.hs +++ b/Version.hs @@ -16,4 +16,4 @@ programName :: String programName = "diohsc" version :: String -version = "0.1.9" +version = "0.1.10" diff --git a/diohsc.cabal b/diohsc.cabal index e42633d..cd355b9 100644 --- a/diohsc.cabal +++ b/diohsc.cabal @@ -1,6 +1,6 @@ cabal-version: 1.18 name: diohsc -version: 0.1.9 +version: 0.1.10 license: GPL-3 license-file: COPYING maintainer: mbays@sdf.org -- 2.11.4.GIT