diff --git a/CHANGELOG.md b/CHANGELOG.md index 7eb735f..271fca7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.3.3] - 2024-04-09 + +### Changed + +- Integrate website into monorepo ([#365](https://github.com/athena-framework/athena/pull/365)) (George Dietrich) + ## [0.3.2] - 2023-10-09 ### Fixed @@ -140,6 +146,7 @@ _First release a part of the monorepo._ _Initial release._ +[0.3.3]: https://github.com/athena-framework/validator/releases/tag/v0.3.3 [0.3.2]: https://github.com/athena-framework/validator/releases/tag/v0.3.2 [0.3.1]: https://github.com/athena-framework/validator/releases/tag/v0.3.1 [0.3.0]: https://github.com/athena-framework/validator/releases/tag/v0.3.0 diff --git a/README.md b/README.md index 1184d62..dbf3009 100644 --- a/README.md +++ b/README.md @@ -6,23 +6,9 @@ Object/value validation library -## Installation +## Getting Started -1. Add the dependency to your `shard.yml`: - -```yaml -dependencies: - athena-validator: - github: athena-framework/validator - version: ~> 0.3.0 -``` - -2. Run `shards install` - -## Documentation - -If using the component on its own, checkout the [API documentation](https://athenaframework.org/Validator). -If using the component as part of Athena, also checkout the [external documentation](https://athenaframework.org/architecture/validator). +Checkout the [Documentation](https://athenaframework.org/Validator). ## Contributing diff --git a/shard.yml b/shard.yml index a21eae4..9608f07 100644 --- a/shard.yml +++ b/shard.yml @@ -1,6 +1,6 @@ name: athena-validator -version: 0.3.2 +version: 0.3.3 crystal: ~> 1.6 diff --git a/src/athena-validator.cr b/src/athena-validator.cr index 3f24932..dd81d24 100644 --- a/src/athena-validator.cr +++ b/src/athena-validator.cr @@ -34,7 +34,7 @@ module Athena; end # Provides a robust object/value validation framework. module Athena::Validator - VERSION = "0.3.2" + VERSION = "0.3.3" # :nodoc: #