diff --git a/CHANGELOG.md b/CHANGELOG.md index ad1084d..b8ac2b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## 0.2.0 - 2023-06-28 + - Added logging level command-line flag - The `dev proc start` subcommand logs segmenter state updates with level info, rather than printing them directly to stdout diff --git a/cmd/cli/main.go b/cmd/cli/main.go index b61f059..422a530 100644 --- a/cmd/cli/main.go +++ b/cmd/cli/main.go @@ -18,7 +18,7 @@ var app = &cli.App{ Name: "planktoscope", // TODO: see if there's a way to get the version from a build tag, so that we don't have to update // this manually - Version: "v0.1.0", + Version: "v0.2.0", Usage: "Command-line tool to operate and manage PlanktoScopes", Commands: []*cli.Command{ devCmd,