mirror of
https://gitea.invidious.io/iv-org/shard-athena-negotiation.git
synced 2024-08-15 00:53:23 +00:00
Bump versions of sub-components & add changelogs (#178)
* Bump versions of sub-components * Add changelogs to each sub-component
This commit is contained in:
parent
42c57abcfa
commit
74ef3ff387
4 changed files with 35 additions and 2 deletions
32
CHANGELOG.md
Normal file
32
CHANGELOG.md
Normal file
|
@ -0,0 +1,32 @@
|
|||
# Changelog
|
||||
|
||||
## [0.1.2] - 2022-05-14
|
||||
|
||||
_First release a part of the monorepo._
|
||||
|
||||
### Added
|
||||
|
||||
- Add `VERSION` constant to `Athena::Negotiation` namespace ([#166](https://github.com/athena-framework/athena/pull/166)) (George Dietrich)
|
||||
- Add getting started documentation to API docs ([#172](https://github.com/athena-framework/athena/pull/172)) (George Dietrich)
|
||||
|
||||
### Changed
|
||||
|
||||
- Update minimum `crystal` version to `~> 1.4.0` ([#169](https://github.com/athena-framework/athena/pull/169)) (George Dietrich)
|
||||
|
||||
### Fixed
|
||||
|
||||
- Correct the shard version in `README.md` ([#6](https://github.com/athena-framework/negotiation/pull/6)) (syeopite)
|
||||
|
||||
## [0.1.1] - 2021-02-04
|
||||
|
||||
### Changed
|
||||
|
||||
- Migrate documentation to [MkDocs](https://mkdocstrings.github.io/crystal/) ([#4](https://github.com/athena-framework/negotiation/pull/4)) (George Dietrich)
|
||||
|
||||
## [0.1.0] - 2020-12-24
|
||||
|
||||
_Initial release._
|
||||
|
||||
[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
|
|
@ -1,5 +1,6 @@
|
|||
# Negotiation
|
||||
|
||||
[![Common Changelog](https://common-changelog.org/badge.svg)](https://common-changelog.org)
|
||||
[![CI](https://github.com/athena-framework/athena/workflows/CI/badge.svg)](https://github.com/athena-framework/athena/actions/workflows/ci.yml)
|
||||
[![Latest release](https://img.shields.io/github/release/athena-framework/negotiation.svg)](https://github.com/athena-framework/negotiation/releases)
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
name: athena-negotiation
|
||||
|
||||
version: 0.1.1
|
||||
version: 0.1.2
|
||||
|
||||
crystal: ~> 1.4
|
||||
|
||||
|
|
|
@ -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.1"
|
||||
VERSION = "0.1.2"
|
||||
|
||||
# Returns a lazily initialized `ANG::Negotiator` singleton instance.
|
||||
class_getter(negotiator) { ANG::Negotiator.new }
|
||||
|
|
Loading…
Reference in a new issue