From d0c3f579573c4452400fc874b23b8ddf67348fe6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20F=2E=20R=C3=B8dseth?= Date: Sun, 12 Feb 2023 21:06:40 +0100 Subject: [PATCH] New patch release --- README.md | 4 ++-- aur.sh | 2 +- o.1 | 2 +- v2/main.go | 2 +- version.sh | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 2af87abd..cbb9f6ed 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ With Go 1.17 or later, `o` can be installed like this: Alternatively, download and install a [release version](https://github.com/xyproto/o/releases). For example, for Raspberry Pi 2, 3 or 4 running Linux: - curl -sL 'https://github.com/xyproto/o/releases/download/2.59.4/o-2.59.4-linux_armv7_static.tar.xz' | tar axC /tmp && sudo install -Dm755 /tmp/o-2.59.4-linux_armv7_static/o /usr/bin/o && sudo install -Dm644 /tmp/o-2.59.4-linux_armv7_static/o.1.gz /usr/share/man/man1/o.1.gz + curl -sL 'https://github.com/xyproto/o/releases/download/2.59.5/o-2.59.5-linux_armv7_static.tar.xz' | tar axC /tmp && sudo install -Dm755 /tmp/o-2.59.5-linux_armv7_static/o /usr/bin/o && sudo install -Dm644 /tmp/o-2.59.5-linux_armv7_static/o.1.gz /usr/share/man/man1/o.1.gz ## Setting `o` as the default editor for `git` @@ -553,6 +553,6 @@ Install (use `sudo`, if needed): ## General info -* Version: 2.59.4 +* Version: 2.59.5 * License: 3-clause BSD * Author: Alexander F. Rødseth <xyproto@archlinux.org> diff --git a/aur.sh b/aur.sh index 3caa865a..298dc1e4 100755 --- a/aur.sh +++ b/aur.sh @@ -1,6 +1,6 @@ #!/bin/sh -VERSION=2.59.4 +VERSION=2.59.5 rm -rf archpackages mkdir -p archpackages diff --git a/o.1 b/o.1 index 9b9f9138..e3e25859 100644 --- a/o.1 +++ b/o.1 @@ -167,7 +167,7 @@ Middle-click pasting (instead of pasting with \fBctrl-v\fP) may have issues with .sp The smart indentation is not always smart. .SH VERSION -2.59.4 +2.59.5 .SH AUTHOR .B o was written by Alexander F. Rødseth diff --git a/v2/main.go b/v2/main.go index d10bd77a..f4d1f0a3 100644 --- a/v2/main.go +++ b/v2/main.go @@ -15,7 +15,7 @@ import ( ) const ( - versionString = "o 2.59.4" + versionString = "o 2.59.5" ) func main() { diff --git a/version.sh b/version.sh index 857816d3..e6838ded 100755 --- a/version.sh +++ b/version.sh @@ -4,7 +4,7 @@ # # The current version goes here, as the default value -VERSION=${1:-'2.59.4'} +VERSION=${1:-'2.59.5'} if [ -z "$1" ]; then echo "The current version is $VERSION, pass the new version as the first argument if you wish to change it"