Skip to content

Commit

Permalink
Athena Framework 0.18.0 prep (#266)
Browse files Browse the repository at this point in the history
* Bump `config` component
* Bump `console` component
* Bump `dependency-injection` component
* Bump `event-dispatcher` component
* Bump `negotation` component
* Bump `routing` component
* Bump `serializer` component
* Bump `spec` component
* Bump `validator` component
* Update `release.sh` to allow tagging multiple components at once
  • Loading branch information
Blacksmoke16 committed Feb 18, 2023
1 parent be474eb commit bc3ebd1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog

## [0.3.6] - 2023-02-18

### Changed

- Update some links in preparation for Athena Framework `0.18.0` ([#261](https://github.com/athena-framework/athena/pull/261)) (George Dietrich)

## [0.3.5] - 2023-02-04

### Added
Expand Down Expand Up @@ -138,6 +144,7 @@ _Major refactor of the component._

_Initial release._

[0.3.6]: https://github.com/athena-framework/dependency-injection/releases/tag/v0.3.6
[0.3.5]: https://github.com/athena-framework/dependency-injection/releases/tag/v0.3.5
[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
Expand Down
2 changes: 1 addition & 1 deletion shard.yml
@@ -1,6 +1,6 @@
name: athena-dependency_injection

version: 0.3.4
version: 0.3.6

crystal: ~> 1.4

Expand Down
2 changes: 1 addition & 1 deletion src/athena-dependency_injection.cr
Expand Up @@ -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.4"
VERSION = "0.3.6"

private BINDINGS = {} of Nil => Nil
private AUTO_CONFIGURATIONS = {} of Nil => Nil
Expand Down

0 comments on commit bc3ebd1

Please sign in to comment.