Skip to content
Merged
Show file tree
Hide file tree
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
18 changes: 16 additions & 2 deletions documentation/docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,22 @@ ComposeInvestigator follows the format `[Kotlin Version - ComposeInvestigator Ve

## [Unreleased]

## [2.1.0-Beta1-1.0.0-beta01] (unreleased)

- #172: Supports K2, with the entire logic rewritten. Some runtime features have
been removed, and no new features have been added.

### Artifact Address Update

The artifact address has been changed as follows:

- Previous: `land.sungbin.composeinvestigator`
- Updated: `in.sungb.composeinvestigator`

The domain sungbin.land has expired, and I no longer own `land.sungbin`. For future
stability and maintenance, the artifact address has been changed to `in.sungb`,
which is under my ownership. The package name remains unchanged.

## [1.5.11-0.2.1] - 2024-03-23

- No API changes.
Expand Down Expand Up @@ -43,8 +56,9 @@ ComposeInvestigator follows the format `[Kotlin Version - ComposeInvestigator Ve

- Initial release.

[Unreleased]: https://github.com/jisungbin/ComposeInvestigator/compare/1.5.11-0.2.1...HEAD
[1.5.11-0.2.1]: https://github.com/jisungbin/ComposeInvestigator/releases/tag/1.5.11-0.2.1
[Unreleased]: https://github.com/jisungbin/ComposeInvestigator/compare/2.1.0-Beta1-1.0.0-beta01...HEAD
[2.1.0-Beta1-1.0.0-beta01]: https://github.com/jisungbin/ComposeInvestigator/releases/tag/2.1.0-Beta1-1.0.0-beta01
[1.5.11-0.2.1]: https://github.com/jisungbin/ComposeInvestigator/releases/tag/1.5.11-0.2.1
[1.5.10-0.2.1]: https://github.com/jisungbin/ComposeInvestigator/releases/tag/1.5.10-0.2.1
[1.5.10-0.2.0]: https://github.com/jisungbin/ComposeInvestigator/releases/tag/1.5.10-0.2.0
[1.5.10-0.1.1]: https://github.com/jisungbin/ComposeInvestigator/releases/tag/1.5.10-0.1.1
Expand Down
4 changes: 2 additions & 2 deletions documentation/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ nav:
- 'Advanced': 'advanced.md'
- 'Under the Hood': 'internal.md'
- 'Change Log': 'changelog.md'
- 'Compiler API ⏏': 'https://jisungbin.github.io/ComposeInvestigator/compiler/api/'
- 'Runtime API ⏏': 'https://jisungbin.github.io/ComposeInvestigator/runtime/api/'
- 'Compiler API ⏏': 'https://jisungbin.github.io/ComposeInvestigator/compiler/api/html'
- 'Runtime API ⏏': 'https://jisungbin.github.io/ComposeInvestigator/runtime/api/html'
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ public operator fun ComposableName.getValue(thisRef: Any?, property: Any?): Stri
* [currentComposableInvalidationTracer]) without being instantiated, you will receive a
* unexpected behaviour.
*/
// TODO Consider a better name. The current name is slightly verbose.
@Immutable
public class ComposableInvalidationTraceTable @ComposeInvestigatorCompilerApi public constructor() {
/**
Expand Down Expand Up @@ -142,6 +143,8 @@ public class ComposableInvalidationTraceTable @ComposeInvestigatorCompilerApi pu
* ```
*
* If [value] is not a [StateObject], or if the assigned variable is not found, null is returned.
*
* @suppress This is not yet ready for public use.
*/
// TODO Is this operation really O(1)? When become clear, add this note into KDoc:
// *Note: This operation takes `O(1)`*.
Expand Down
Loading