Skip to content

Commit fa9e9d5

Browse files
committed
Merge branch 'release/v1.1.0'
2 parents e48f897 + 786cd73 commit fa9e9d5

27 files changed

Lines changed: 65 additions & 27 deletions

.goreleaser.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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+
archive:
13+
replacements:
14+
darwin: Darwin
15+
linux: Linux
16+
amd64: x86_64
17+
checksum:
18+
name_template: 'checksums.txt'
19+
snapshot:
20+
name_template: "{{ .Tag }}-next"
21+
changelog:
22+
sort: asc
23+
filters:
24+
exclude:
25+
- '^docs:'
26+
- '^test:'
27+
env_files:
28+
github_token: ~/.config/goreleaser/github_token

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ install:
1919
script:
2020
- make lint
2121
- make test
22-
- make misspell
22+
- make build
2323

2424
notifications:
2525
email: fei.sun@liulishuo.com

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
<a name="1.1.0"></a>
2+
# [1.1.0](https://github.com/moooofly/harborctl/compare/v1.0.1...v1.1.0) (2019-02-11)
3+
4+
5+
### Features
6+
7+
* add .goreleaser.yml ([aeb9c07](https://github.com/moooofly/harborctl/commit/aeb9c07))
8+
9+
10+
111
<a name="1.0.1"></a>
212
# [1.0.1](https://github.com/moooofly/harborctl/compare/v1.0.0...v1.0.1) (2019-02-11)
313

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.1
1+
1.1.0

cmd/chartrepo.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ var chartrepoURL string
3333
var chartrepoCmd = &cobra.Command{
3434
Use: "chartrepo",
3535
Short: "'/chartrepo' API.",
36-
Long: `The subcommand of '/chartrepo' hierachy.`,
36+
Long: `The subcommand of '/chartrepo' hierarchy.`,
3737
PersistentPreRun: func(cmd *cobra.Command, args []string) {
3838
chartrepoURL = utils.URLGen("/api/chartrepo")
3939
},

cmd/chartrepo_chart.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import (
3131
var chartCmd = &cobra.Command{
3232
Use: "chart",
3333
Short: "'/chartrepo/{repo}/charts' API.",
34-
Long: `The subcommand of '/chartrepo/{repo}/charts' hierachy.`,
34+
Long: `The subcommand of '/chartrepo/{repo}/charts' hierarchy.`,
3535
Run: func(cmd *cobra.Command, args []string) {
3636
fmt.Println("Use \"harborctl chartrepo chart --help\" for more information about this command.")
3737
},

cmd/chartrepo_chart_label.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import (
3333
var chartLabelCmd = &cobra.Command{
3434
Use: "label",
3535
Short: "'/chartrepo/{repo}/charts/{name}/{version}/labels' API.",
36-
Long: `'The subcommand of '/chartrepo/{repo}/charts/{name}/{version}/labels' hierachy.`,
36+
Long: `'The subcommand of '/chartrepo/{repo}/charts/{name}/{version}/labels' hierarchy.`,
3737
Run: func(cmd *cobra.Command, args []string) {
3838
fmt.Println("Use \"harborctl chartrepo chart label --help\" for more information about this command.")
3939
},

cmd/chartrepo_prov.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import (
3131
var provCmd = &cobra.Command{
3232
Use: "prov",
3333
Short: "'/chartrepo/{repo}/prov' API.",
34-
Long: `The subcommand of '/chartrepo/{repo}/prov' hierachy.`,
34+
Long: `The subcommand of '/chartrepo/{repo}/prov' hierarchy.`,
3535
Run: func(cmd *cobra.Command, args []string) {
3636
fmt.Println("Use \"harborctl chartrepo prov --help\" for more information about this command.")
3737
},

cmd/internal.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ var internalURL string
3333
var internalCmd = &cobra.Command{
3434
Use: "internal",
3535
Short: "'/internal' API.",
36-
Long: `The subcommand of '/internal' hierachy.`,
36+
Long: `The subcommand of '/internal' hierarchy.`,
3737
PersistentPreRun: func(cmd *cobra.Command, args []string) {
3838
internalURL = utils.URLGen("/api/internal")
3939
},

cmd/label.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ var labelURL string
3535
var labelCmd = &cobra.Command{
3636
Use: "label",
3737
Short: "'/labels' API.",
38-
Long: `The subcommand of '/labels' hierachy.`,
38+
Long: `The subcommand of '/labels' hierarchy.`,
3939
PersistentPreRun: func(cmd *cobra.Command, args []string) {
4040
labelURL = utils.URLGen("/api/labels")
4141
},

0 commit comments

Comments
 (0)