diff --git a/CHANGELOG.md b/CHANGELOG.md index 0adc869..79e529d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.3.5] - 2024-04-09 + +### Changed + +- Change `Config` dependency to `DependencyInjection` for the custom annotation feature ([#392](https://github.com/athena-framework/athena/pull/392)) (George Dietrich) +- Integrate website into monorepo ([#365](https://github.com/athena-framework/athena/pull/365)) (George Dietrich) + ## [0.3.4] - 2023-10-09 _Administrative release, no functional changes_ @@ -137,6 +144,7 @@ _First release a part of the monorepo._ _Initial release._ +[0.3.5]: https://github.com/athena-framework/serializer/releases/tag/v0.3.5 [0.3.4]: https://github.com/athena-framework/serializer/releases/tag/v0.3.4 [0.3.3]: https://github.com/athena-framework/serializer/releases/tag/v0.3.3 [0.3.2]: https://github.com/athena-framework/serializer/releases/tag/v0.3.2 diff --git a/README.md b/README.md index e4d2516..7a4a0dd 100644 --- a/README.md +++ b/README.md @@ -6,24 +6,9 @@ Flexible object (de)serialization library +## Getting Started -## Installation - -1. Add the dependency to your `shard.yml`: - -```yaml -dependencies: - athena-serializer: - github: athena-framework/serializer - version: ~> 0.3.0 -``` - -2. Run `shards install` - -## Documentation - -If using the component on its own, checkout the [API documentation](https://athenaframework.org/Serializer). -If using the component as part of Athena, also checkout the [external documentation](https://athenaframework.org/architecture/serializer). +Checkout the [Documentation](https://athenaframework.org/Serializer). ## Contributing diff --git a/shard.yml b/shard.yml index fa55efd..ede921b 100644 --- a/shard.yml +++ b/shard.yml @@ -1,6 +1,6 @@ name: athena-serializer -version: 0.3.4 +version: 0.3.5 crystal: ~> 1.4 diff --git a/src/athena-serializer.cr b/src/athena-serializer.cr index 0939bc2..90f811a 100644 --- a/src/athena-serializer.cr +++ b/src/athena-serializer.cr @@ -36,7 +36,7 @@ module YAML; end # Provides enhanced (de)serialization features. module Athena::Serializer - VERSION = "0.3.4" + VERSION = "0.3.5" # Returns an `ASR::SerializerInterface` instance for ad-hoc (de)serialization. #