diff --git a/CHANGELOG.md b/CHANGELOG.md index 26e75b33..cf29acdf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # History of notable changes introduced in each version +## v0.3.0 (2021-06-05) +#### New features + - Top and bottom placements for label icons + - Icon for outside label + - New label type "NONE" + - Attribute to change label icon placement for all slices +#### Updates + - Decrease default label font size + - Piechart::slices property is now immutable var instead of mutable val + ## v0.2.0 (2021-05-29) #### New features - Outside label (currently not supporting icon) diff --git a/README.md b/README.md index aad4e6e7..5a6d02d8 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ ### build.gradle[.kts] ```groovy -implementation("ir.mahozad.android:pie-chart:0.2.0") +implementation("ir.mahozad.android:pie-chart:0.3.0") ``` ### layout.xml diff --git a/piechart/build.gradle.kts b/piechart/build.gradle.kts index e9fe1791..c9f5e84a 100644 --- a/piechart/build.gradle.kts +++ b/piechart/build.gradle.kts @@ -12,7 +12,7 @@ plugins { } group = "ir.mahozad.android" -version = "0.2.0" +version = "0.3.0" android { sourceSets { @@ -41,7 +41,7 @@ android { defaultConfig { minSdkVersion(21) targetSdkVersion(30) - versionCode = 2 + versionCode = 3 versionName = project.version.toString() testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunnerArgument("runnerBuilder", "de.mannodermaus.junit5.AndroidJUnit5Builder")