From a69d68fa29180e15d764c179d0f2e0611e950533 Mon Sep 17 00:00:00 2001 From: Jay Nagpaul Date: Sat, 28 Oct 2017 15:22:07 -0400 Subject: [PATCH] V 0.6.0 --- .gitignore | 4 +++- Makefile | 6 ++++++ README.md | 2 +- app/update/version.go | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index b5933fd..9607629 100644 --- a/.gitignore +++ b/.gitignore @@ -23,4 +23,6 @@ dist/ app/assets/assets.go -tmp/ \ No newline at end of file +tmp/ + +app/update/version.go diff --git a/Makefile b/Makefile index 159e407..8a8d557 100644 --- a/Makefile +++ b/Makefile @@ -39,6 +39,12 @@ build: version deps assets-release # Creates a zip archive of each folder @$(foreach bit,$(BITS),$(foreach os, $(GOOSES), zip -rj dist/instahelper-$(v)-$(os)-$(bit).zip dist/instahelper-$(v)-$(os)-$(bit);)) +# Remove 32 bit MacOS, all are 64 bit anyways + rm dist/instahelper-$(v)-darwin-32.zip + +# Renames darwin > macos + mv dist/instahelper-$(v)-darwin-64.zip dist/instahelper-$(v)-macos-64.zip + # Deletes the original folders @$(foreach bit,$(BITS),$(foreach os, $(GOOSES), rm -rf dist/instahelper-$(v)-$(os)-$(bit);)) diff --git a/README.md b/README.md index 8621c4e..d89e193 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Instahelper - PreAlpha Self Hosted Web Based Instagram Automation Tool -[![GoDoc](https://godoc.org/github.com/socialplanner/instahelper?status.svg)](https://godoc.org/github.com/socialplanner/instahelper) [![Version](https://img.shields.io/badge/version-0.0.6-green.svg)](#development-status) +[![GoDoc](https://godoc.org/github.com/socialplanner/instahelper?status.svg)](https://godoc.org/github.com/socialplanner/instahelper) [![Version](https://img.shields.io/badge/version-0.6.0-green.svg)](#development-status) [![Travis](https://img.shields.io/travis/socialplanner/instahelper.svg?style=flat)](https://travis-ci.org/socialplanner/instahelper) [![Go Report Card](https://goreportcard.com/badge/github.com/socialplanner/instahelper)](https://goreportcard.com/report/github.com/socialplanner/instahelper) diff --git a/app/update/version.go b/app/update/version.go index 7324f7a..f0e5984 100644 --- a/app/update/version.go +++ b/app/update/version.go @@ -1,4 +1,4 @@ package update // VERSION of instahelper -var VERSION = "nightly" \ No newline at end of file +var VERSION = "v0.6.0" \ No newline at end of file