From 2a0c652ebee7fb4be969290d80207a33fce7ebb6 Mon Sep 17 00:00:00 2001 From: Mahdi Hosseinzadeh Date: Tue, 31 Aug 2021 16:39:36 +0430 Subject: [PATCH] Increment the version and update the changelog --- CHANGELOG.md | 10 ++++++++++ README.md | 2 +- piechart/build.gradle.kts | 4 ++-- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f9534d82..8c06105e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # History of notable changes introduced in each version +## v0.7.0 (2021-08-31) +#### New features + - Add basic animation support ([`22f6af60`](https://github.com/mahozad/android-pie-chart/commit/22f6af60)) +#### Bug fixes + - Fix the bug with whole-fraction single-slice pie ([`0d25f282`](https://github.com/mahozad/android-pie-chart/commit/0d25f282)) +#### Other + - Improve the showcase app ([`e5dec1f7`](https://github.com/mahozad/android-pie-chart/commit/e5dec1f7)) + +[All commits since version 0.6.2](https://github.com/mahozad/android-pie-chart/compare/v0.6.2...v0.7.0) + ## v0.6.2 (2021-08-25) #### Bug fixes - Fix the bug with single-slice pie not drawn ([`d79fdf15`](https://github.com/mahozad/android-pie-chart/commit/d79fdf15)) diff --git a/README.md b/README.md index 322a8dd1..f336442c 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ A Pie/Donut[*](#footnote-1)/Ring chart for Android, custom ### build.gradle[.kts] ```groovy -implementation("ir.mahozad.android:pie-chart:0.6.2") +implementation("ir.mahozad.android:pie-chart:0.7.0") ``` ### XML layout diff --git a/piechart/build.gradle.kts b/piechart/build.gradle.kts index cf165195..42f9f24d 100644 --- a/piechart/build.gradle.kts +++ b/piechart/build.gradle.kts @@ -18,7 +18,7 @@ plugins { } group = "ir.mahozad.android" -version = "0.6.2" +version = "0.7.0" val githubProjectName = "android-pie-chart" android { @@ -62,7 +62,7 @@ android { defaultConfig { minSdkVersion(21) targetSdkVersion(30) - versionCode = 8 + versionCode = 9 versionName = project.version.toString() testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunnerArgument("runnerBuilder", "de.mannodermaus.junit5.AndroidJUnit5Builder")