diff --git a/CHANGELOG.md b/CHANGELOG.md index a542e3e..d54ee29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.1.5] - 2024-04-09 + +### Changed + +- Integrate website into monorepo ([#365](https://github.com/athena-framework/athena/pull/365)) (George Dietrich) + ## [0.1.4] - 2023-10-09 _Administrative release, no functional changes_ @@ -37,6 +43,7 @@ _First release a part of the monorepo._ _Initial release._ +[0.1.5]: https://github.com/athena-framework/negotiation/releases/tag/v0.1.5 [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 diff --git a/README.md b/README.md index 51b81a6..6a1e9e4 100644 --- a/README.md +++ b/README.md @@ -6,23 +6,9 @@ Framework agnostic [content negotiation](https://tools.ietf.org/html/rfc7231#section-5.3) library based on [willdurand/Negotiation](https://github.com/willdurand/Negotiation). -## Installation +## Getting Started -1. Add the dependency to your `shard.yml`: - -```yaml -dependencies: - athena-negotiation: - github: athena-framework/negotiation - version: ~> 0.1.0 -``` - -2. Run `shards install` - -## Documentation - -If using the component on its own, checkout the [API documentation](https://athenaframework.org/Negotiation). -If using the component as part of Athena, also checkout the [external documentation](https://athenaframework.org/architecture/negotiation). +Checkout the [Documentation](https://athenaframework.org/Negotiation). ## Contributing diff --git a/shard.yml b/shard.yml index a69be44..b15ac1f 100644 --- a/shard.yml +++ b/shard.yml @@ -1,6 +1,6 @@ name: athena-negotiation -version: 0.1.4 +version: 0.1.5 crystal: ~> 1.4 diff --git a/src/athena-negotiation.cr b/src/athena-negotiation.cr index b348ef0..12ddf3a 100644 --- a/src/athena-negotiation.cr +++ b/src/athena-negotiation.cr @@ -15,7 +15,7 @@ alias ANG = Athena::Negotiation # The `Athena::Negotiation` component allows an application to support [content negotiation](https://tools.ietf.org/html/rfc7231#section-5.3). module Athena::Negotiation - VERSION = "0.1.4" + VERSION = "0.1.5" # Returns a lazily initialized `ANG::Negotiator` singleton instance. class_getter(negotiator) { ANG::Negotiator.new }