Athena Framework `0.18.0` prep (#266)

* Bump `config` component
* Bump `console` component
* Bump `dependency-injection` component
* Bump `event-dispatcher` component
* Bump `negotation` component
* Bump `routing` component
* Bump `serializer` component
* Bump `spec` component
* Bump `validator` component
* Update `release.sh` to allow tagging multiple components at once
This commit is contained in:
George Dietrich 2023-02-18 12:02:11 -05:00 committed by GitHub
parent 1328425160
commit 14b5e0589e
3 changed files with 9 additions and 2 deletions

View File

@ -1,5 +1,11 @@
# Changelog
## [0.1.3] - 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)
## [0.1.2] - 2022-05-14
_First release a part of the monorepo._
@ -27,6 +33,7 @@ _First release a part of the monorepo._
_Initial release._
[0.1.3]: https://github.com/athena-framework/negotiation/releases/tag/v0.1.3
[0.1.2]: https://github.com/athena-framework/negotiation/releases/tag/v0.1.2
[0.1.1]: https://github.com/athena-framework/negotiation/releases/tag/v0.1.1
[0.1.0]: https://github.com/athena-framework/negotiation/releases/tag/v0.1.0

View File

@ -1,6 +1,6 @@
name: athena-negotiation
version: 0.1.2
version: 0.1.3
crystal: ~> 1.4

View File

@ -102,7 +102,7 @@ alias ANG = Athena::Negotiation
#
# The `ANG::LanguageNegotiator` type returns an `ANG::AcceptLanguage`, or `nil` if negotiating the best language has failed.
module Athena::Negotiation
VERSION = "0.1.2"
VERSION = "0.1.3"
# Returns a lazily initialized `ANG::Negotiator` singleton instance.
class_getter(negotiator) { ANG::Negotiator.new }