Skip to content

Commit 3d54380

Browse files
Merge pull request #108 from servian/v0.10.0
Version bump and License year update.
2 parents 00a70c2 + f5ac9c9 commit 3d54380

File tree

14 files changed

+510
-32
lines changed

14 files changed

+510
-32
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright © 2020 Servian
3+
Copyright © 2022 Servian
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

cmd/root.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © 2020 Servian
1+
// Copyright © 2022 Servian
22
//
33
// Permission is hereby granted, free of charge, to any person obtaining a copy
44
// of this software and associated documentation files (the "Software"), to deal
@@ -50,7 +50,7 @@ var rootCmd = &cobra.Command{
5050
This application is used as part of challenging potential candiates at Sevian.
5151
5252
Please visit http://Servian.com for more details`,
53-
Version: "0.9.0",
53+
Version: "0.10.0",
5454
}
5555

5656
// Execute adds all child commands to the root command and sets flags appropriately.

cmd/serve.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © 2020 Servian
1+
// Copyright © 2022 Servian
22
//
33
// Permission is hereby granted, free of charge, to any person obtaining a copy
44
// of this software and associated documentation files (the "Software"), to deal

cmd/updatedb.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © 2020 Servian
1+
// Copyright © 2022 Servian
22
//
33
// Permission is hereby granted, free of charge, to any person obtaining a copy
44
// of this software and associated documentation files (the "Software"), to deal

config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © 2020 Servian
1+
// Copyright © 2022 Servian
22
//
33
// Permission is hereby granted, free of charge, to any person obtaining a copy
44
// of this software and associated documentation files (the "Software"), to deal

daemon/deamon.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © 2020 Servian
1+
// Copyright © 2022 Servian
22
//
33
// Permission is hereby granted, free of charge, to any person obtaining a copy
44
// of this software and associated documentation files (the "Software"), to deal

db/db.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright ©2020 Servian
1+
// Copyright ©2022 Servian
22
//
33
// Permission is hereby granted, free of charge, to any person obtaining a copy
44
// of this software and associated documentation files (the "Software"), to deal

go.mod

Lines changed: 27 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,35 @@
11
module github.com/servian/TechChallengeApp
22

3-
go 1.14
3+
go 1.18
44

55
require (
6-
github.com/BurntSushi/toml v0.3.1 // indirect
76
github.com/GeertJohan/go.rice v1.0.2
8-
github.com/fsnotify/fsnotify v1.4.7 // indirect
7+
github.com/gorilla/mux v1.8.0
8+
github.com/lib/pq v1.10.6
9+
github.com/spf13/cobra v1.5.0
10+
github.com/spf13/viper v1.12.0
11+
)
12+
13+
require (
14+
github.com/BurntSushi/toml v0.3.1 // indirect
15+
github.com/daaku/go.zipexe v1.0.1 // indirect
16+
github.com/fsnotify/fsnotify v1.5.4 // indirect
917
github.com/gorilla/context v1.1.1 // indirect
10-
github.com/gorilla/mux v1.6.2
11-
github.com/hashicorp/hcl v0.0.0-20180404174102-ef8a98b0bbce // indirect
18+
github.com/hashicorp/hcl v1.0.0 // indirect
1219
github.com/inconshreveable/mousetrap v1.0.0 // indirect
13-
github.com/lib/pq v0.0.0-20180327071824-d34b9ff171c2
14-
github.com/magiconair/properties v1.8.0 // indirect
15-
github.com/mitchellh/mapstructure v0.0.0-20180715050151-f15292f7a699 // indirect
16-
github.com/pelletier/go-toml v1.2.0 // indirect
17-
github.com/spf13/afero v1.1.1 // indirect
18-
github.com/spf13/cast v1.2.0 // indirect
19-
github.com/spf13/cobra v0.0.3
20-
github.com/spf13/jwalterweatherman v0.0.0-20180109140146-7c0cea34c8ec // indirect
21-
github.com/spf13/pflag v1.0.1 // indirect
22-
github.com/spf13/viper v1.0.2
23-
github.com/stretchr/testify v1.6.1 // indirect
24-
golang.org/x/sys v0.0.0-20180724212812-e072cadbbdc8 // indirect
25-
golang.org/x/text v0.3.0 // indirect
26-
gopkg.in/yaml.v2 v2.2.1 // indirect
20+
github.com/magiconair/properties v1.8.6 // indirect
21+
github.com/mitchellh/mapstructure v1.5.0 // indirect
22+
github.com/pelletier/go-toml v1.9.5 // indirect
23+
github.com/pelletier/go-toml/v2 v2.0.2 // indirect
24+
github.com/spf13/afero v1.8.2 // indirect
25+
github.com/spf13/cast v1.5.0 // indirect
26+
github.com/spf13/jwalterweatherman v1.1.0 // indirect
27+
github.com/spf13/pflag v1.0.5 // indirect
28+
github.com/stretchr/testify v1.7.2 // indirect
29+
github.com/subosito/gotenv v1.4.0 // indirect
30+
golang.org/x/sys v0.0.0-20220624220833-87e55d714810 // indirect
31+
golang.org/x/text v0.3.7 // indirect
32+
gopkg.in/ini.v1 v1.66.6 // indirect
33+
gopkg.in/yaml.v2 v2.4.0 // indirect
34+
gopkg.in/yaml.v3 v3.0.1 // indirect
2735
)

go.sum

Lines changed: 470 additions & 0 deletions
Large diffs are not rendered by default.

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © 2020 Servian
1+
// Copyright © 2022 Servian
22
//
33
// Permission is hereby granted, free of charge, to any person obtaining a copy
44
// of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)