Skip to content

Commit

Permalink
V 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jaynagpaul committed Oct 28, 2017
1 parent 8cadee5 commit a69d68f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,6 @@ dist/

app/assets/assets.go

tmp/
tmp/

app/update/version.go
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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);))

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion app/update/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package update

// VERSION of instahelper
var VERSION = "nightly"
var VERSION = "v0.6.0"

0 comments on commit a69d68f

Please sign in to comment.