diff --git a/CHANGELOG.md b/CHANGELOG.md index d1bae21..a9f85b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,17 +1,23 @@ # Changelog -## [0.3.3] - 2022-05-14 +## [0.3.4] - 2023-01-07 -_First release a part of the monorepo._ +### Changed -### Added +- Refactor various internal logic (George Dietrich) -- Add getting started documentation to API docs ([#172](https://github.com/athena-framework/athena/pull/172)) (George Dietrich) +## [0.3.3] - 2022-05-14 + +_First release a part of the monorepo._ ### Changed - Update minimum `crystal` version to `~> 1.4.0` ([#169](https://github.com/athena-framework/athena/pull/169)) (George Dietrich) +### Added + +- Add getting started documentation to API docs ([#172](https://github.com/athena-framework/athena/pull/172)) (George Dietrich) + ## [0.3.2] - 2021-10-30 ### Changed @@ -126,6 +132,7 @@ _Major refactor of the component._ _Initial release._ +[0.3.4]: https://github.com/athena-framework/dependency-injection/releases/tag/v0.3.4 [0.3.3]: https://github.com/athena-framework/dependency-injection/releases/tag/v0.3.3 [0.3.2]: https://github.com/athena-framework/dependency-injection/releases/tag/v0.3.2 [0.3.1]: https://github.com/athena-framework/dependency-injection/releases/tag/v0.3.1 diff --git a/shard.yml b/shard.yml index 456d239..c27e1c5 100644 --- a/shard.yml +++ b/shard.yml @@ -1,6 +1,6 @@ name: athena-dependency_injection -version: 0.3.3 +version: 0.3.4 crystal: ~> 1.4 diff --git a/src/athena-dependency_injection.cr b/src/athena-dependency_injection.cr index fe9a61b..c6bfdc7 100644 --- a/src/athena-dependency_injection.cr +++ b/src/athena-dependency_injection.cr @@ -52,7 +52,7 @@ alias ADI = Athena::DependencyInjection # fiber is truly independent from one another, with them not being reused or sharing state external to the container. An example of this is how `HTTP::Server` reuses fibers # for `connection: keep-alive` requests. Because of this, or in cases similar to, you may want to manually reset the container via `Fiber.current.container = ADI::ServiceContainer.new`. module Athena::DependencyInjection - VERSION = "0.3.3" + VERSION = "0.3.4" private BINDINGS = {} of Nil => Nil private AUTO_CONFIGURATIONS = {} of Nil => Nil