Skip to content

Commit

Permalink
#194 Prepare for versioned release
Browse files Browse the repository at this point in the history
  • Loading branch information
docktermj committed Dec 10, 2024
1 parent da778d1 commit 6ecc66b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning].

-

## [0.14.4] - 2024-12-10

### Changed in 0.14.4

- Change SzAbstractFactory methods from `CreateSzXxx` to `CreateXxx`

## [0.14.3] - 2024-10-30

### Changed in 0.14.3
Expand Down
2 changes: 1 addition & 1 deletion response/response_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// DO NOT EDIT. This code is generated.
// Generated by: sz-sdk-go/bin/generate_senzing_unmarshal_test.py
// Generated for: sz-sdk-go/senzing/unmarshal_test.go
// Generated date: 2024-10-28T20:53:36.852074+00:00
// Generated date: 2024-12-10T18:41:07.612629+00:00

package response

Expand Down
10 changes: 5 additions & 5 deletions senzing/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ Type SzAbstractFactory interface is the interface for Senzing factories followin
[Abstract Factory pattern]: https://en.wikipedia.org/wiki/Abstract_factory_pattern
*/
type SzAbstractFactory interface {
CreateSzConfig(ctx context.Context) (SzConfig, error)
CreateSzConfigManager(ctx context.Context) (SzConfigManager, error)
CreateSzDiagnostic(ctx context.Context) (SzDiagnostic, error)
CreateSzEngine(ctx context.Context) (SzEngine, error)
CreateSzProduct(ctx context.Context) (SzProduct, error)
CreateConfig(ctx context.Context) (SzConfig, error)
CreateConfigManager(ctx context.Context) (SzConfigManager, error)
CreateDiagnostic(ctx context.Context) (SzDiagnostic, error)
CreateEngine(ctx context.Context) (SzEngine, error)
CreateProduct(ctx context.Context) (SzProduct, error)
Destroy(ctx context.Context) error
Reinitialize(ctx context.Context, configID int64) error
}
Expand Down

0 comments on commit 6ecc66b

Please sign in to comment.