Skip to content

Commit

Permalink
Release time! (#434)
Browse files Browse the repository at this point in the history
* Bump `console` component
* Bump `dependency_injection` component
* Bump `dotenv` component
* Bump `framework` component
* Bump `spec` component
* Bump `validator` component
  • Loading branch information
Blacksmoke16 authored Jul 31, 2024
1 parent 59527e6 commit 0c9d4ba
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [0.3.6] - 2024-07-31

### Changed

- **Breaking:** `ACON::Application#getter` and constructor argument must now be a `String` instead of `SemanticVersion` ([#419](https://github.com/athena-framework/athena/pull/419)) (George Dietrich)
- Changed the default `ACON::Application` version to `UNKNOWN` from `0.1.0` ([#419](https://github.com/athena-framework/athena/pull/419)) (George Dietrich)
- List commands in a namespace when using it as the command name ([#427](https://github.com/athena-framework/athena/pull/427)) (George Dietrich)
- Use single quotes in text descriptor to quote values in the output ([#427](https://github.com/athena-framework/athena/pull/427)) (George Dietrich)

## [0.3.5] - 2024-04-09

### Changed
Expand Down Expand Up @@ -121,6 +130,7 @@ _First release a part of the monorepo._

_Initial release._

[0.3.6]: https://github.com/athena-framework/console/releases/tag/v0.3.6
[0.3.5]: https://github.com/athena-framework/console/releases/tag/v0.3.5
[0.3.4]: https://github.com/athena-framework/console/releases/tag/v0.3.4
[0.3.3]: https://github.com/athena-framework/console/releases/tag/v0.3.3
Expand Down
8 changes: 8 additions & 0 deletions UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

Documents the changes that may be required when upgrading to a newer component version.

## Upgrade to 0.3.6

### `ACON::Application` version is now represented as a `String`

If passing a [SemanticVersion](https://crystal-lang.org/api/SemanticVersion.html) as the *version* of an `ACON::Application`, call `#to_s` on it or ideally pass a semver `String` directly.
If using the `#version` getter off the `ACON::Application`, your code will either need to adapt to it now being a `String`.
Either by manually constructing a `SemanticVersion` or ideally just supporting the returned `String`.

## Upgrade to 0.3.3

### New `ACON::Style::Interface` methods
Expand Down
2 changes: 1 addition & 1 deletion shard.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: athena-console

version: 0.3.5
version: 0.3.6

crystal: ~> 1.11

Expand Down
2 changes: 1 addition & 1 deletion src/athena-console.cr
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ alias ACONA = ACON::Annotations

# Allows the creation of CLI based commands
module Athena::Console
VERSION = "0.3.5"
VERSION = "0.3.6"

# Contains all the `Athena::Console` based annotations.
module Annotations; end
Expand Down

0 comments on commit 0c9d4ba

Please sign in to comment.