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
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,23 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.1.0-alpha02] - 2024-03-21
Second alpha release of App Sizer with Kotlin Multiplatform support and bug fixes.

### Added
- Support for Kotlin Multiplatform (KMP) modules

### Fixed
- Fixed APK total size calculation
- Fixed report generation for default device specifications
- Improved temporary file handling by generating default_device to build folder instead of temp file

### Changed
- Updated sample build script
- Improved documentation and configuration options

[0.1.0-alpha02]: https://github.com/grab/app-sizer/releases/tag/0.1.0-alpha02

## [0.1.0-alpha01] - 2024-11-29
Initial release of App Sizer as an open-source project.

Expand Down
2 changes: 1 addition & 1 deletion constants.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@

ext {
groupId = "com.grab.sizer"
versionName = project.hasProperty("versionName") ? versionName : "0.1.0-alpha01"
versionName = project.hasProperty("versionName") ? versionName : "0.1.0-alpha02"
}
6 changes: 3 additions & 3 deletions docs/plugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ pluginManagement {
2. Add the plugin to your project classpath (root's build.gradle):
```groovy
plugins {
id "com.grab.sizer" version "0.1.0-alpha01" apply false
id "com.grab.sizer" version "0.1.0-alpha02" apply false
}
```
3. Apply and configure the plugin to your app module's build.gradle:
```groovy
plugins {
id "com.grab.sizer" version "0.1.0-alpha01"
id "com.grab.sizer" version "0.1.0-alpha02"
}

appSizer {
Expand All @@ -40,7 +40,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath "com.grab.sizer:sizer-gradle-plugin:0.1.0-alpha01"
classpath "com.grab.sizer:sizer-gradle-plugin:0.1.0-alpha02"
}
}
```
Expand Down
Loading