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 fa621cf commit 9c1afff
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## [0.19.2] - 2024-07-31

### Added

- Add `ATH.run_console` as an easier entrypoint into the console application ([#413](https://github.com/athena-framework/athena/pull/413)) (George Dietrich)
- Add support for additional boolean conversion values from request attributes ([#422](https://github.com/athena-framework/athena/pull/422)) (George Dietrich)

### Changed

- **Breaking:** `ATH::RequestMatcher::Method` now requires an `Array(String)` as opposed to any `Enumerable(String)` ([#431](https://github.com/athena-framework/athena/pull/431)) (George Dietrich)
- Update minimum `crystal` version to `~> 1.13.0` ([#433](https://github.com/athena-framework/athena/pull/433)) (George Dietrich)
- Updates usages of `UTF-8` in response headers to `utf-8` as preferred by the RFC ([#417](https://github.com/athena-framework/athena/pull/417)) (George Dietrich)

### Fixed

- Fix the content negotiation implementation not working ([#431](https://github.com/athena-framework/athena/pull/431)) (George Dietrich)

## [0.19.1] - 2024-04-27

### Fixed
Expand Down Expand Up @@ -170,6 +187,7 @@ _Last release in the [athena-framework/athena](https://github.com/athena-framewo
- Fix incorrect ivar type on `AVD::Exceptions::Exceptions::ValidationFailed#violations` ([#116](https://github.com/athena-framework/athena/pull/116)) (George Dietrich)
- Correctly reject requests with whitespace when converting numeric inputs ([#117](https://github.com/athena-framework/athena/pull/117)) (George Dietrich)

[0.19.2]: https://github.com/athena-framework/framework/releases/tag/v0.19.2
[0.19.1]: https://github.com/athena-framework/framework/releases/tag/v0.19.1
[0.19.0]: https://github.com/athena-framework/framework/releases/tag/v0.19.0
[0.18.2]: https://github.com/athena-framework/framework/releases/tag/v0.18.2
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

version: 0.19.1
version: 0.19.2

crystal: ~> 1.13

Expand Down
2 changes: 1 addition & 1 deletion src/athena.cr
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ alias ATHA = ATH::Annotations
alias ATHR = ATH::Controller::ValueResolvers

module Athena::Framework
VERSION = "0.19.1"
VERSION = "0.19.2"

# The name of the environment variable used to determine Athena's current environment.
ENV_NAME = "ATHENA_ENV"
Expand Down

0 comments on commit 9c1afff

Please sign in to comment.