Skip to content

release 0.7.3 #479

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,32 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

[Unreleased]

### Changed
- Kotlin updated to 2.1.20

### Fixed
- Will now error when a child and parent components provide a binding for the same type.

### Added
- Added mingwX64 target for windows
- KSP2 support
- You can now use `@AssistedFactory` to annotate an interface that creates an instance of a type. This factory can be
used in place of a lambda when injecting. This can be useful because an explicit interface can have named and default
parameters. ex:
```kotlin
@Inject class Foo(@Assisted arg: String)

@AssistedFactory
interface CreateFoo {
fun create(arg: String): Foo
}

@Inject
class Bar(fooFactory: CreateFoo)
```

## [0.7.2] 2024-09-13

### Changed
Expand Down