Skip to content

Commit 769d6a9

Browse files
authored
#145 Prepare for versioned release (#147)
1 parent 0e18054 commit 769d6a9

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010

1111
-
1212

13+
## [0.4.10] - 2023-07-25
14+
15+
### Changed in 0.4.10
16+
17+
- Update dependencies
18+
- github.com/senzing/go-cmdhelping v0.1.1
19+
- github.com/senzing/go-common v0.2.5
20+
1321
## [0.4.9] - 2023-07-17
1422

1523
### Changed in 0.4.9

cmd/github.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
// Created by make-go-github-file.yaml on Fri Jun 16 20:31:38 UTC 2023
33
package cmd
44

5-
var githubDate string = "2023-06-16"
5+
var githubDate string = "2023-07-25"
66
var githubIteration string = "0"
7-
var githubRef string = "refs/tags/0.4.9"
8-
var githubRefName string = "0.4.9"
7+
var githubRef string = "refs/tags/0.4.10"
8+
var githubRefName string = "0.4.10"
99
var githubRepository string = "Senzing/serve-grpc"
1010
var githubRepositoryName string = "serve-grpc"
11-
var githubVersion string = "0.4.9"
11+
var githubVersion string = "0.4.10"

cmd/root.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,10 @@ func RunE(_ *cobra.Command, _ []string) error {
9393
EnableG2diagnostic: viper.GetBool(option.EnableG2diagnostic.Arg),
9494
EnableG2engine: viper.GetBool(option.EnableG2engine.Arg),
9595
EnableG2product: viper.GetBool(option.EnableG2product.Arg),
96+
LogLevelName: viper.GetString(option.LogLevel.Arg),
9697
ObserverOrigin: viper.GetString(option.ObserverOrigin.Arg),
9798
ObserverUrl: viper.GetString(option.ObserverUrl.Arg),
9899
Port: viper.GetInt(option.GrpcPort.Arg),
99-
LogLevelName: viper.GetString(option.LogLevel.Arg),
100100
SenzingEngineConfigurationJson: senzingEngineConfigurationJson,
101101
SenzingModuleName: viper.GetString(option.EngineModuleName.Arg),
102102
SenzingVerboseLogging: viper.GetInt(option.EngineLogLevel.Arg),

0 commit comments

Comments
 (0)