From 4893f632726d66eb0e4bd03850ff60f041a4279a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20F=2E=20R=C3=B8dseth?= Date: Wed, 7 Dec 2022 12:45:27 +0100 Subject: [PATCH] New minor release --- README.md | 4 ++-- aur.sh | 2 +- o.1 | 4 ++-- v2/main.go | 2 +- version.sh | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 4779e6bd..379f2c61 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ With Go 1.18 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.57.0/o-2.57.0-linux_armv7_static.tar.xz' | tar JxC /tmp && sudo install -Dm755 /tmp/o-2.57.0-linux_armv7_static/o /usr/bin/o && sudo install -Dm644 /tmp/o-2.57.0-linux_armv7_static/o.1.gz /usr/share/man/man1/o.1.gz + curl -sL 'https://github.com/xyproto/o/releases/download/2.58.0/o-2.58.0-linux_armv7_static.tar.xz' | tar JxC /tmp && sudo install -Dm755 /tmp/o-2.58.0-linux_armv7_static/o /usr/bin/o && sudo install -Dm644 /tmp/o-2.58.0-linux_armv7_static/o.1.gz /usr/share/man/man1/o.1.gz * Remember to use `tar zxC` if the release file for your platform ends with `.tar.gz`. * The `sudo install` commands may be slightly different for FreeBSD and NetBSD. @@ -532,6 +532,6 @@ Install (use `sudo`, if needed): ## General info -* Version: 2.57.0 +* Version: 2.58.0 * License: 3-clause BSD * Author: Alexander F. Rødseth <xyproto@archlinux.org> diff --git a/aur.sh b/aur.sh index 85711462..ac92bc39 100755 --- a/aur.sh +++ b/aur.sh @@ -1,6 +1,6 @@ #!/bin/sh -VERSION=2.57.0 +VERSION=2.58.0 rm -rf archpackages mkdir -p archpackages diff --git a/o.1 b/o.1 index 6b350d15..b1d97ae9 100644 --- a/o.1 +++ b/o.1 @@ -1,6 +1,6 @@ .\" -*-Nroff-*- .\" -.TH "o" 1 "16 Oct 2022" "o" "User Commands" +.TH "o" 1 "07 Dec 2022" "o" "User Commands" .SH NAME o \- an editor .SH SYNOPSIS @@ -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.57.0 +2.58.0 .SH AUTHOR .B o was written by Alexander F. Rødseth diff --git a/v2/main.go b/v2/main.go index 42ac0fc8..02cd4503 100644 --- a/v2/main.go +++ b/v2/main.go @@ -15,7 +15,7 @@ import ( ) const ( - versionString = "o 2.57.0" + versionString = "o 2.58.0" ) func main() { diff --git a/version.sh b/version.sh index 631cf614..fd420bf4 100755 --- a/version.sh +++ b/version.sh @@ -4,7 +4,7 @@ # # The current version goes here, as the default value -VERSION=${1:-'2.57.0'} +VERSION=${1:-'2.58.0'} if [ -z "$1" ]; then echo "The current version is $VERSION, pass the new version as the first argument if you wish to change it"