This repository was archived by the owner on Apr 30, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +38
-2
lines changed Expand file tree Collapse file tree 3 files changed +38
-2
lines changed Original file line number Diff line number Diff line change 1515
1616# Goland
1717.idea
18+
19+ # Goreleases
20+ dist /
Original file line number Diff line number Diff line change 1+ # This is an example goreleaser.yaml file with some sane defaults.
2+ # Make sure to check the documentation at http://goreleaser.com
3+ before :
4+ hooks :
5+ # you may remove this if you don't use vgo
6+ - go mod download
7+ # you may remove this if you don't need go generate
8+ - go generate ./...
9+ builds :
10+ - env :
11+ - CGO_ENABLED=0
12+ - GO111MODULE=on
13+ main : ./cmd/fuzzit
14+ archives :
15+ - replacements :
16+ darwin : Darwin
17+ linux : Linux
18+ windows : Windows
19+ 386 : i386
20+ amd64 : x86_64
21+ goos :
22+ - windows
23+ - linux
24+ - darwin
25+ checksum :
26+ name_template : ' checksums.txt'
27+ snapshot :
28+ name_template : " {{ .Tag }}-next"
29+ changelog :
30+ sort : asc
31+ filters :
32+ exclude :
33+ - ' ^docs:'
34+ - ' ^test:'
Original file line number Diff line number Diff line change 11package main
22
3- import "C"
43import (
54 "encoding/json"
65 "gopkg.in/urfave/cli.v1"
@@ -50,7 +49,7 @@ func main() {
5049 app .EnableBashCompletion = true
5150 app .Name = "Fuzzit"
5251 app .Usage = "Continuous fuzzing made simple"
53- app .Version = "1.2.1 "
52+ app .Version = "1.2.2 "
5453 app .Compiled = time .Now ()
5554 app .Authors = []cli.Author {
5655 cli.Author {
You can’t perform that action at this time.
0 commit comments