From ff60ed2fb28af1ef0e0a53dae3abe318f366eddb Mon Sep 17 00:00:00 2001 From: Mahdi Hosseinzadeh Date: Sun, 4 Jul 2021 21:01:50 +0430 Subject: [PATCH] Increment the version and update the changelog --- CHANGELOG.md | 11 +++++++++++ README.md | 2 +- piechart/build.gradle.kts | 4 ++-- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b1d78db0..90ed103f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # History of notable changes introduced in each version +## v0.4.0 (2021-07-04) +#### New features +- Outside inward circular label +- Outside outward circular label +- Attribute to change label icon tint for all slices +#### Updates +- Update *androidx.core* dependency +- Decrease default icon margin +#### Removals +- Remove unneeded library dependencies + ## v0.3.0 (2021-06-05) #### New features - Top and bottom placements for label icons diff --git a/README.md b/README.md index a7de3d15..0a20c85e 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ A Pie/Donut/Ring chart for Android. ### build.gradle[.kts] ```groovy -implementation("ir.mahozad.android:pie-chart:0.3.0") +implementation("ir.mahozad.android:pie-chart:0.4.0") ``` ### layout.xml diff --git a/piechart/build.gradle.kts b/piechart/build.gradle.kts index b00b760a..c9199be9 100644 --- a/piechart/build.gradle.kts +++ b/piechart/build.gradle.kts @@ -11,7 +11,7 @@ plugins { } group = "ir.mahozad.android" -version = "0.3.0" +version = "0.4.0" val githubProjectName = "android-pie-chart" android { @@ -41,7 +41,7 @@ android { defaultConfig { minSdkVersion(21) targetSdkVersion(30) - versionCode = 3 + versionCode = 4 versionName = project.version.toString() testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunnerArgument("runnerBuilder", "de.mannodermaus.junit5.AndroidJUnit5Builder")