Release ready

Signed-off-by: Jguer <me@jguer.space>
This commit is contained in:
Jguer 2018-02-27 01:51:51 +00:00
parent f000afaa42
commit e800984e8f
3 changed files with 15 additions and 3 deletions

View file

@ -1,11 +1,11 @@
.PHONY: all default install test build release clean
VERSION := $(shell git rev-list --count master)
LDFLAGS=-ldflags '-s -w -X main.version=2.${VERSION}'
LDFLAGS=-ldflags '-s -w -X main.version=3.${VERSION}'
GOFILES := $(shell ls *.go | grep -v /vendor/)
ARCH=$(shell uname -m)
PKGNAME=yay
PACKAGE=${PKGNAME}_2.${VERSION}_${ARCH}
PACKAGE=${PKGNAME}_3.${VERSION}_${ARCH}
default: build

View file

@ -43,6 +43,18 @@ Yay was created with a few objectives in mind and based on the design of [yaourt
### Changelog
#### 3.373
* Version bump to V3 to reflect all of the changes to syntax
* `yay -Pd` prints default config
* `yay -Pg` prints current config
* Fixes #174
* Fixes #176
* Fixes -G being unable to download split packages
* Fixes #171
* Fixes -Si failing when given a non existing package on https://github.com/Jguer/yay/pull/155
* Fixes other small bugs on 2.350 without adding new features
#### 2.350
* Adds sudo loop (off by default, enable only by editing config file) #147

View file

@ -41,7 +41,7 @@ type Configuration struct {
CleanAfter bool `json:"cleanAfter"`
}
var version = "2.365"
var version = "3.373"
// baseURL givers the AUR default address.
const baseURL string = "https://aur.archlinux.org"