Skip to content

Commit

Permalink
Release 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
joehillen committed Oct 8, 2021
1 parent f3bf989 commit af2b17b
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 6 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.1.1] - 2021-10-08

### Added
- Support MSYS2 (#3)

### Fixed
- Fix when using sudo (#2)
- Ensure that fzf calls bash for previews (#2)


## [1.1.0] - 2021-09-02

### Changed
- Remove unsafe "reload" keybinding `CTRL-r`
21 changes: 18 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,24 @@
.PHONY: all install clean
VERSION := $(shell cat VERSION)
ARCHIVE := paruz-$(VERSION).tar.gz
.PHONY: all install clean release

all: clean README.md VERSION PKGBUILD
sed -i -e "s/^PARUZ_VERSION=.*/PARUZ_VERSION=$(VERSION)/" paruz
sed -i -e "s/^pkgver=.*/pkgver=$(VERSION)/" PKGBUILD

release: all
git commit -am 'Release $(VERSION)'
git tag $(VERSION)
git push origin $(VERSION)
git archive --format=tar.gz -o $(ARCHIVE) --prefix paruz-$(VERSION)/ HEAD
sed -i -e "s/^sha256sums=.*/sha256sums=('`sha256sum $(ARCHIVE) | cut -d' ' -f1`')/" PKGBUILD
makepkg
git commit -am 'Update PKGBUILD'
git push origin master

all: clean README.md

clean:
rm -f README.md
/bin/rm -f README.md

README.md: README.sh paruz VERSION
./README.sh
Expand Down
2 changes: 1 addition & 1 deletion PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Maintainer: Joe Hillenbrand (joehillen) <[email protected]>

pkgname=paruz
pkgver=1.1.0
pkgver=1.1.1
pkgrel=1
pkgdesc="A fzf terminal UI for paru or pacman"
arch=("any")
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

A [fzf](https://github.com/junegunn/fzf) terminal UI for [paru](https://github.com/Morganamilo/paru) (or [pacman](https://wiki.archlinux.org/title/Pacman), if paru is not installed).

VERSION: 1.1.0
VERSION: 1.1.1

# Usage

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0
1.1.1

0 comments on commit af2b17b

Please sign in to comment.