From fd6cd9a20fb4f2129a38dc5d81bff2a3d1f3eada Mon Sep 17 00:00:00 2001 From: George Dietrich Date: Mon, 5 Sep 2022 12:41:25 -0400 Subject: [PATCH] Bump component versions to resolve Crystal `1.5.0` warnings (#193) * Add helper script to show what is pending release within each component --- CHANGELOG.md | 11 +++++++++++ shard.yml | 2 +- src/athena-console.cr | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b32d12..7ee60d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [0.2.1] - 2022-09-05 + +### Added + +- Add an `ACON::Input::Interface` based on a command line string ([#186](https://github.com/athena-framework/athena/pull/186), [#187](https://github.com/athena-framework/athena/pull/187)) (George Dietrich) + +### Changed + +- **Breaking:** ensure parameter names defined on interfaces match the implementation ([#188](https://github.com/athena-framework/athena/pull/188)) (George Dietrich) + ## [0.2.0] - 2022-05-14 _First release a part of the monorepo._ @@ -29,6 +39,7 @@ _First release a part of the monorepo._ _Initial release._ +[0.2.1]: https://github.com/athena-framework/console/releases/tag/v0.2.1 [0.2.0]: https://github.com/athena-framework/console/releases/tag/v0.2.0 [0.1.1]: https://github.com/athena-framework/console/releases/tag/v0.1.1 [0.1.0]: https://github.com/athena-framework/console/releases/tag/v0.1.0 diff --git a/shard.yml b/shard.yml index 5bd6b58..a2fd97e 100644 --- a/shard.yml +++ b/shard.yml @@ -1,6 +1,6 @@ name: athena-console -version: 0.2.0 +version: 0.2.1 crystal: ~> 1.4 diff --git a/src/athena-console.cr b/src/athena-console.cr index 060c7c5..64ca81e 100644 --- a/src/athena-console.cr +++ b/src/athena-console.cr @@ -87,7 +87,7 @@ alias ACON = Athena::Console # From here you can then setup your entry point file talked about earlier, being sure to require the component via `require "athena-console"`. # Finally, create/require your `ACON::Command`s, and customize the `ACON::Application` as needed. module Athena::Console - VERSION = "0.2.0" + VERSION = "0.2.1" # Includes the commands that come bundled with `Athena::Console`. module Commands; end