Skip to content

Commit

Permalink
Bump components (#250)
Browse files Browse the repository at this point in the history
* Improve diff script to include GH compare link and allow diffing a single component
* Add helper script to create the release branch/tag
* Bump `console`
* Bump `dependency-injection`
* Bump `event-dispatcher`
* Bump `routing`
* Bump `serializer`
* Bump `spec`
* Bump `validator`
* Bump constraint in `framework` component and root `shard.yml`
* Add `common changelog` badge to `framework` component
  • Loading branch information
Blacksmoke16 committed Jan 7, 2023
1 parent 2bc94f9 commit b535c07
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
15 changes: 11 additions & 4 deletions 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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion shard.yml
@@ -1,6 +1,6 @@
name: athena-dependency_injection

version: 0.3.3
version: 0.3.4

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.3"
VERSION = "0.3.4"

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

0 comments on commit b535c07

Please sign in to comment.