diff --git a/CHANGELOG.md b/CHANGELOG.md index a49bd49..22dfcf5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [0.3.2] - 2023-02-18 + +### Changed + +- Update some links in preparation for Athena Framework `0.18.0` ([#261](https://github.com/athena-framework/athena/pull/261)) (George Dietrich) + +### Fixed + +- Fix formatting issue in Crystal `1.8-dev` ([#258](https://github.com/athena-framework/athena/pull/258)) (George Dietrich) + ## [0.3.1] - 2023-02-04 ### Added @@ -67,6 +77,7 @@ _First release a part of the monorepo._ _Initial release._ +[0.3.2]: https://github.com/athena-framework/console/releases/tag/v0.3.2 [0.3.1]: https://github.com/athena-framework/console/releases/tag/v0.3.1 [0.3.0]: https://github.com/athena-framework/console/releases/tag/v0.3.0 [0.2.1]: https://github.com/athena-framework/console/releases/tag/v0.2.1 diff --git a/shard.yml b/shard.yml index 2afd86e..62e1277 100644 --- a/shard.yml +++ b/shard.yml @@ -1,6 +1,6 @@ name: athena-console -version: 0.3.0 +version: 0.3.2 crystal: ~> 1.4 diff --git a/src/athena-console.cr b/src/athena-console.cr index 6a548eb..bf3007f 100644 --- a/src/athena-console.cr +++ b/src/athena-console.cr @@ -94,7 +94,7 @@ alias ACONA = ACON::Annotations # TIP: If using this component with the `Athena::DependencyInjection` component, `ACON::Command` that have the `ADI::Register` annotation will automatically # be registered as commands when using the `ADI::Console::Application` type. module Athena::Console - VERSION = "0.3.0" + VERSION = "0.3.2" # Contains all the `Athena::Console` based annotations. module Annotations; end