From a0c17eae618bfefd7fae42c1c2381d1b9831d545 Mon Sep 17 00:00:00 2001 From: Robert Pearce Date: Sat, 9 May 2020 15:44:26 -0400 Subject: [PATCH] add missing version info --- CHANGELOG.md | 8 ++++++++ bashcards | 16 ++++++++++++---- bashcards.8 | 9 ++++++--- 3 files changed, 26 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 16fedc8..60dfb11 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [0.1.2] - 2020-05-09 + +### Fixed +Include missing version information + +### Fixed +* use `printf` instead of `clear` to clear the screen + ## [0.1.1] - 2020-05-09 ### Fixed diff --git a/bashcards b/bashcards index faa745d..a96c56d 100755 --- a/bashcards +++ b/bashcards @@ -7,13 +7,20 @@ set -eou pipefail pname="bashcards" ext="bcrds" +version="0.1.2" + +function version { + echo "$version" + return 0 +} function usage { cat <