Skip to content

Commit 2af1268

Browse files
authored
Merge pull request #19 from square/0.0.2-dev
Release 0.0.2-dev
2 parents f6dcf0a + 485424b commit 2af1268

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

CHANGELOG.md

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
# Change Log
22

3-
## Version 0.0.*-dev
3+
4+
## Version 0.0.2-dev
5+
6+
_2024-09-03_
7+
8+
* 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.
9+
* Added a "category" to `StatMetadata` which creates groupings in the left nav.
10+
* Added a new tabular view for `CodeReference`s.
11+
* Shows stat totals on the home page.
12+
* Bug fixes and other small changes. [See all changes here](https://github.com/square/invert/compare/0.0.1-dev...0.0.2-dev).
13+
14+
## Version 0.0.1-dev
415

516
_2024-06-30_
617

examples/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
// maven { url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots") } // SNAPSHOT Versions
99
}
1010
dependencies {
11-
val invertVersion = "0.0.2-dev00-SNAPSHOT"
11+
val invertVersion = "0.0.2-dev"
1212
classpath("com.squareup.invert:invert-gradle-plugin:$invertVersion")
1313
// classpath("com.squareup.invert:collectors-anvil-dagger:$invertVersion")
1414
// classpath("com.squareup.invert:collectors-kotlin-java-loc:$invertVersion")

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ kotlin.code.style=official
33
android.useAndroidX=true
44

55
group=com.squareup.invert
6-
version=0.0.2-dev00-SNAPSHOT
6+
version=0.0.2-dev

invert.init.script.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class InvertInitScriptPlugin : Plugin<Gradle> {
3535
}
3636

3737
dependencies {
38-
val invertVersion = "0.0.2-dev00-SNAPSHOT"
38+
val invertVersion = "0.0.2-dev"
3939
classpath("com.squareup.invert:invert-gradle-plugin:$invertVersion")
4040
}
4141
}

0 commit comments

Comments
 (0)