From 7b304230958e54068a4ce600cc1d1b7333f6739c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20F=2E=20R=C3=B8dseth?= Date: Wed, 4 Sep 2024 15:35:23 +0200 Subject: [PATCH] New minor release --- README.md | 4 ++-- o.1 | 4 ++-- v2/main.go | 2 +- version.sh | 2 +- web/docker.sh | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index a6b396ef..69c94e6a 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ Adjust the `mv` flags and the `~/go/bin` path as needed. Perhaps `go install` wi Alternatively, download and install a [release version](https://github.com/xyproto/orbiton/releases). For example, for Raspberry Pi 2, 3 or 4 running Linux: - curl -sL 'https://github.com/xyproto/orbiton/releases/download/v2.66.0/orbiton-2.66.0-linux_armv7_static.tar.xz' | tar JxC /tmp && sudo install -Dm755 /tmp/orbiton-2.66.0-linux_armv7_static/o /usr/bin/o && sudo install -Dm644 /tmp/orbiton-2.66.0-linux_armv7_static/o.1.gz /usr/share/man/man1/o.1.gz + curl -sL 'https://github.com/xyproto/orbiton/releases/download/v2.67.0/orbiton-2.67.0-linux_armv7_static.tar.xz' | tar JxC /tmp && sudo install -Dm755 /tmp/orbiton-2.67.0-linux_armv7_static/o /usr/bin/o && sudo install -Dm644 /tmp/orbiton-2.67.0-linux_armv7_static/o.1.gz /usr/share/man/man1/o.1.gz ## Setting `o` as the default editor executable for `git` @@ -692,6 +692,6 @@ The above copyright notice and this permission notice shall be included in all c ## General info -* Version: 2.66.0 +* Version: 2.67.0 * License: 3-clause BSD * Author: Alexander F. Rødseth <xyproto@archlinux.org> diff --git a/o.1 b/o.1 index 99c79666..bbb0151a 100644 --- a/o.1 +++ b/o.1 @@ -1,6 +1,6 @@ .\" -*-Nroff-*- .\" -.TH "o" 1 "21 Aug 2024" "o" "User Commands" +.TH "o" 1 "04 Sep 2024" "o" "User Commands" .SH NAME o \- an editor .SH SYNOPSIS @@ -206,7 +206,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.66.0 +2.67.0 .SH AUTHOR .B o was written by Alexander F. Rødseth diff --git a/v2/main.go b/v2/main.go index 99803705..c794e087 100644 --- a/v2/main.go +++ b/v2/main.go @@ -19,7 +19,7 @@ import ( "github.com/xyproto/vt100" ) -const versionString = "Orbiton 2.66.0" +const versionString = "Orbiton 2.67.0" var ( // quitMut disallows Exit(1) while a file is being saved diff --git a/version.sh b/version.sh index 4ef0a0f1..e189ba16 100755 --- a/version.sh +++ b/version.sh @@ -4,7 +4,7 @@ # # The current version goes here, as the default value -VERSION=${1:-'2.66.0'} +VERSION=${1:-'2.67.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" diff --git a/web/docker.sh b/web/docker.sh index 3f5746a8..d085bcd5 100755 --- a/web/docker.sh +++ b/web/docker.sh @@ -1,6 +1,6 @@ #!/bin/sh -DOCKER_TAG='2.66.0' +DOCKER_TAG='2.67.0' # Google Cloud PROJECT_ID='personal-306017'