Skip to content

Commit 5315ece

Browse files
committed
Add Region and Mimetype
1 parent 1d1c4a0 commit 5315ece

18 files changed

+3141
-24
lines changed

.goreleaser.yml

+6-9
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
project_name: honudb
1+
project_name: honu
22
dist: dist
33
builds:
44
# Define multiple builds as a yaml list, specify by a unique id
5-
- id: "cmd-honudb-build"
5+
- id: "cmd-honu-build"
66
dir: .
7-
main: ./cmd/honudb
8-
binary: honudb
7+
main: ./cmd/honu
8+
binary: honu
99
flags:
1010
- -v
1111
ldflags: -s -w -X github.com/rotationalio/honu.GitVersion={{.Commit}} -X github.com/rotationalio/honu.BuildDate={{.Date}}
@@ -28,10 +28,10 @@ builds:
2828
mod_timestamp: '{{ .CommitTimestamp }}'
2929

3030
archives:
31-
- id: "honudb-archive-tgz"
31+
- id: "honu-archive-tgz"
3232
format: tar.gz
3333
builds:
34-
- "cmd-honudb-build"
34+
- "cmd-honu-build"
3535
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
3636
wrap_in_directory: true
3737
files:
@@ -72,9 +72,6 @@ release:
7272
disable: false
7373

7474
changelog:
75-
# Set it to true if you wish to skip the changelog generation.
76-
skip: false
77-
7875
filters:
7976
# Commit messages matching the regexp listed here will be removed from the changelog
8077
exclude:

api/honu.pb.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/honu_grpc.pb.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cmd/honudb/main.go cmd/honu/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ func main() {
1717

1818
// Create HonuDB command line application
1919
app := cli.NewApp()
20-
app.Name = "honudb"
20+
app.Name = "honu"
2121
app.Version = honu.Version()
2222
app.Usage = "run and manage a honudb replica service"
2323
app.Flags = []cli.Flag{}

mimetype/charset.pb.go

+1,184
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)