Skip to content

Commit

Permalink
Release 0.0.2-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
handstandsam committed Sep 3, 2024
1 parent f6dcf0a commit 485424b
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# Change Log

## Version 0.0.*-dev

## Version 0.0.2-dev

_2024-09-03_

* Introduced the "aggregate" phase which allows analysis to be done once all projects have been analyzed. This gives enables more insights regarding cross-project information and collected stats.
* Added a "category" to `StatMetadata` which creates groupings in the left nav.
* Added a new tabular view for `CodeReference`s.
* Shows stat totals on the home page.
* Bug fixes and other small changes. [See all changes here](https://github.com/square/invert/compare/0.0.1-dev...0.0.2-dev).

## Version 0.0.1-dev

_2024-06-30_

Expand Down
2 changes: 1 addition & 1 deletion examples/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
// maven { url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots") } // SNAPSHOT Versions
}
dependencies {
val invertVersion = "0.0.2-dev00-SNAPSHOT"
val invertVersion = "0.0.2-dev"
classpath("com.squareup.invert:invert-gradle-plugin:$invertVersion")
// classpath("com.squareup.invert:collectors-anvil-dagger:$invertVersion")
// classpath("com.squareup.invert:collectors-kotlin-java-loc:$invertVersion")
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ kotlin.code.style=official
android.useAndroidX=true

group=com.squareup.invert
version=0.0.2-dev00-SNAPSHOT
version=0.0.2-dev
2 changes: 1 addition & 1 deletion invert.init.script.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class InvertInitScriptPlugin : Plugin<Gradle> {
}

dependencies {
val invertVersion = "0.0.2-dev00-SNAPSHOT"
val invertVersion = "0.0.2-dev"
classpath("com.squareup.invert:invert-gradle-plugin:$invertVersion")
}
}
Expand Down

0 comments on commit 485424b

Please sign in to comment.