Compare commits

...

3 Commits

Author SHA1 Message Date
George Dietrich 80d2019d38 Release Time! (#322) 2023-10-09 22:06:47 -04:00
George Dietrich 3451002963 Create `CONTRIBUTING.md` (#317) 2023-10-09 14:54:50 +00:00
George Dietrich 3f71823d20 Address all mkdocs link warnings (#319) 2023-10-07 11:30:22 -04:00
5 changed files with 12 additions and 4 deletions

View File

@ -1,5 +1,9 @@
# Changelog
## [0.1.4] - 2023-10-09
_Administrative release, no functional changes_
## [0.1.3] - 2023-02-18
### Changed
@ -33,6 +37,7 @@ _First release a part of the monorepo._
_Initial release._
[0.1.4]: https://github.com/athena-framework/negotiation/releases/tag/v0.1.4
[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

3
CONTRIBUTING.md Normal file
View File

@ -0,0 +1,3 @@
# Contributing
This repository is a read-only mirror. Please refer the [main Athena repository](https://github.com/athena-framework/athena/blob/master/CONTRIBUTING.md) on how to start contributing.

View File

@ -26,4 +26,4 @@ If using the component as part of Athena, also checkout the [external documentat
## Contributing
[Report issues](https://github.com/athena-framework/athena/issues) and send [Pull Requests](https://github.com/athena-framework/athena/pulls) in the [main Athena repository](https://github.com/athena-framework/athena).
Read the general [Contributing Guide](./CONTRIBUTING.md) for information on how to get started.

View File

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

View File

@ -19,7 +19,7 @@ alias ANG = Athena::Negotiation
# ## Getting Started
#
# If using this component within the [Athena Framework][Athena::Framework], it is already installed and required for you.
# Checkout the [manual](/architecture/negotiation) for some additional information on how to use it within the framework.
# Checkout the [manual](../architecture/negotiation.md) for some additional information on how to use it within the framework.
#
# If using it outside of the framework, you will first need to add it as a dependency:
#
@ -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.3"
VERSION = "0.1.4"
# Returns a lazily initialized `ANG::Negotiator` singleton instance.
class_getter(negotiator) { ANG::Negotiator.new }