diff --git a/CHANGELOG.md b/CHANGELOG.md index 594efa4..9e22f45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/constants.gradle b/constants.gradle index 4c2f80a..dcc1569 100644 --- a/constants.gradle +++ b/constants.gradle @@ -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" } \ No newline at end of file diff --git a/docs/plugin.md b/docs/plugin.md index a3fa9ad..d6185aa 100644 --- a/docs/plugin.md +++ b/docs/plugin.md @@ -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 { @@ -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" } } ```