diff options
author | Kyle Meyer <kyle@kyleam.com> | 2022-04-17 23:52:08 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2022-04-17 23:52:13 -0400 |
commit | 547941861ad97147876b38e266622f03e17c1624 (patch) | |
tree | 4ddeba5739201492ce45f11d66150c1810cca211 | |
parent | 5209ad280e08d95d10f63a2dd6079cedca3db0f6 (diff) | |
download | piem-547941861ad97147876b38e266622f03e17c1624.tar.gz |
Fix versions strings for 0.3.0 release
Embarrassingly, I forgot to do this in b8eec6b9.
-rw-r--r-- | .guix.scm | 2 | ||||
-rw-r--r-- | Documentation/piem.texi | 2 | ||||
-rw-r--r-- | piem.el | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -48,7 +48,7 @@ (define-public piem (package (name "piem") - (version "0.2.0") + (version "0.3.0") (source (origin (method git-fetch) diff --git a/Documentation/piem.texi b/Documentation/piem.texi index 852da20..b7a02e3 100644 --- a/Documentation/piem.texi +++ b/Documentation/piem.texi @@ -1,6 +1,6 @@ \input texinfo @c -*-texinfo-*- -@set VERSION 0.2.0 +@set VERSION 0.3.0 @setfilename piem.info @documentencoding UTF-8 @@ -4,7 +4,7 @@ ;; Author: Kyle Meyer <kyle@kyleam.com> ;; Keywords: vc, tools -;; Version: 0.2.0 +;; Version: 0.3.0 ;; Package-Requires: ((emacs "26.3") (transient "0.3.0")) ;; Homepage: https://git.kyleam.com/piem/about/ |