From c45b0c20f81fbeb190bd0873cebd843eba28faf4 Mon Sep 17 00:00:00 2001 From: Mahdi Hosseinzadeh Date: Sun, 22 Aug 2021 20:40:19 +0430 Subject: [PATCH] Increment the version and update the changelog --- CHANGELOG.md | 8 ++++++++ README.md | 2 +- piechart/build.gradle.kts | 4 ++-- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 427c84d3..d7492109 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # History of notable changes introduced in each version +## v0.6.1 (2021-08-22) +#### Bug fixes + - Fix the bug with some properties change having no effect in the chart ([`eb17cf50`](https://github.com/mahozad/android-pie-chart/commit/eb17cf50)) +#### Other + - Migrate the showcase app to Jetpack Compose ([`66abcd04`](https://github.com/mahozad/android-pie-chart/commit/66abcd04)) + +[All commits since version 0.6.0](https://github.com/mahozad/android-pie-chart/compare/v0.6.0...v0.6.1) + ## v0.6.0 (2021-08-21) #### New features - Add resource version of properties ([`0885cf07`](https://github.com/mahozad/android-pie-chart/commit/0885cf07) and other commits) diff --git a/README.md b/README.md index d4918947..10df80f4 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ A Pie/Donut[1](#footnote-1)/Ring chart for Android, custom ### build.gradle[.kts] ```groovy -implementation("ir.mahozad.android:pie-chart:0.6.0") +implementation("ir.mahozad.android:pie-chart:0.6.1") ``` ### XML layout diff --git a/piechart/build.gradle.kts b/piechart/build.gradle.kts index acf3857b..1e2817b6 100644 --- a/piechart/build.gradle.kts +++ b/piechart/build.gradle.kts @@ -18,7 +18,7 @@ plugins { } group = "ir.mahozad.android" -version = "0.6.0" +version = "0.6.1" val githubProjectName = "android-pie-chart" android { @@ -62,7 +62,7 @@ android { defaultConfig { minSdkVersion(21) targetSdkVersion(30) - versionCode = 6 + versionCode = 7 versionName = project.version.toString() testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunnerArgument("runnerBuilder", "de.mannodermaus.junit5.AndroidJUnit5Builder")