Browse Source

Release ready

Signed-off-by: Jguer <me@jguer.space>
Jguer 7 years ago
parent
commit
e800984e8f
3 changed files with 15 additions and 3 deletions
  1. 2 2
      Makefile
  2. 12 0
      README.md
  3. 1 1
      config.go

+ 2 - 2
Makefile

@@ -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
 

+ 12 - 0
README.md

@@ -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

+ 1 - 1
config.go

@@ -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"