Skip to content

Commit

Permalink
New patch release
Browse files Browse the repository at this point in the history
  • Loading branch information
xyproto committed Feb 20, 2023
1 parent f60fab7 commit 6d02169
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ With Go 1.17 or later, `o` can be installed like this:

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/2.60.0/o-2.60.0-linux_armv7_static.tar.xz' | tar axC /tmp && sudo install -Dm755 /tmp/o-2.60.0-linux_armv7_static/o /usr/bin/o && sudo install -Dm644 /tmp/o-2.60.0-linux_armv7_static/o.1.gz /usr/share/man/man1/o.1.gz
curl -sL 'https://github.com/xyproto/orbiton/releases/download/2.60.1/o-2.60.1-linux_armv7_static.tar.xz' | tar axC /tmp && sudo install -Dm755 /tmp/o-2.60.1-linux_armv7_static/o /usr/bin/o && sudo install -Dm644 /tmp/o-2.60.1-linux_armv7_static/o.1.gz /usr/share/man/man1/o.1.gz

## Setting `o` as the default editor for `git`

Expand Down Expand Up @@ -563,6 +563,6 @@ Install (use `sudo`, if needed):

## General info

* Version: 2.60.0
* Version: 2.60.1
* License: 3-clause BSD
* Author: Alexander F. Rødseth <[email protected]>
2 changes: 1 addition & 1 deletion aur.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

VERSION=2.60.0
VERSION=2.60.1

rm -rf archpackages
mkdir -p archpackages
Expand Down
2 changes: 1 addition & 1 deletion o.1
Original file line number Diff line number Diff line change
Expand Up @@ -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.60.0
2.60.1
.SH AUTHOR
.B o
was written by Alexander F. Rødseth <[email protected]>
2 changes: 1 addition & 1 deletion release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Create release tarballs/zip-files
#
cd v2
name=o
name=orbiton
version=$(grep -i version main.go | head -1 | cut -d' ' -f4 | cut -d'"' -f1)
echo "Version $version"

Expand Down
2 changes: 1 addition & 1 deletion v2/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
)

const (
versionString = "o 2.60.0"
versionString = "o 2.60.1"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#

# The current version goes here, as the default value
VERSION=${1:-'2.60.0'}
VERSION=${1:-'2.60.1'}

if [ -z "$1" ]; then
echo "The current version is $VERSION, pass the new version as the first argument if you wish to change it"
Expand Down

0 comments on commit 6d02169

Please sign in to comment.