From 88a0bca3c8edfd20cf9ac9c11e86bbce10cec069 Mon Sep 17 00:00:00 2001 From: Mahdi Hosseinzadeh Date: Sun, 1 Aug 2021 18:31:28 +0430 Subject: [PATCH] Increment the version and update the changelog Signed-off-by: Mahdi Hosseinzadeh --- CHANGELOG.md | 39 ++++++++++++++++++++++++++++++++++----- README.md | 2 +- piechart/build.gradle.kts | 4 ++-- 3 files changed, 37 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 592f549c..68997eec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # History of notable changes introduced in each version +## v0.5.0 (2021-08-01) +#### New features + - Legends ([17d74f86] and other commits) + Including properties and attributes for: + - Legends automatic wrapping + - Legends box (enable/disable, title, background, border, color, position, alignment) + - Legends arrangement (horizontal/vertical) + - Legends percentage (enable/disable, size, color) + - Legends alignment + - Legends icons (default icons, tint, height, margin from legend text) + - Center label ([5907b86d]) + - Center background ([f88d28c5]) +#### Updates + - Update some library dependencies ([e9420e85]) + - Update Kotlin version ([ce8cda52]) +#### Other + - Fix empty javadoc jar by including dokka documentation in it ([87195e51]) + +[All commits since version 0.4.0] + ## v0.4.0 (2021-07-04) #### New features - Outside inward circular label ([3bad21df]) @@ -27,12 +47,12 @@ ## v0.2.0 (2021-05-29) #### New features -- Outside label (currently not supporting icon) ([d5269dd9]) -- Outward Pointer for slices ([d5269dd9]) -- Label icon for inside labels ([7dffb164]) -- Properties for changing label colors ([7c374cec]) + - Outside label (currently not supporting icon) ([d5269dd9]) + - Outward Pointer for slices ([d5269dd9]) + - Label icon for inside labels ([7dffb164]) + - Properties for changing label colors ([7c374cec]) #### Updates -- Attributes are now public to use in layouts ([64a1f18d]) + - Attributes are now public to use in layouts ([64a1f18d]) [All commits since version 0.1.0] @@ -43,6 +63,7 @@ This is the first release of the library. [All commits since version 0.1.0]: https://github.com/mahozad/android-pie-chart/compare/v0.1.0...v0.2.0 [All commits since version 0.2.0]: https://github.com/mahozad/android-pie-chart/compare/v0.2.0...v0.3.0 [All commits since version 0.3.0]: https://github.com/mahozad/android-pie-chart/compare/v0.3.0...v0.4.0 +[All commits since version 0.4.0]: https://github.com/mahozad/android-pie-chart/compare/v0.4.0...v0.5.0 [64a1f18d]: https://github.com/mahozad/android-pie-chart/commit/64a1f18d [7c374cec]: https://github.com/mahozad/android-pie-chart/commit/7c374cec @@ -58,6 +79,12 @@ This is the first release of the library. [3bad21df]: https://github.com/mahozad/android-pie-chart/commit/3bad21df [e0724cb7]: https://github.com/mahozad/android-pie-chart/commit/e0724cb7 [891f77be]: https://github.com/mahozad/android-pie-chart/commit/891f77be +[17d74f86]: https://github.com/mahozad/android-pie-chart/commit/17d74f86 +[5907b86d]: https://github.com/mahozad/android-pie-chart/commit/5907b86d +[f88d28c5]: https://github.com/mahozad/android-pie-chart/commit/f88d28c5 +[e9420e85]: https://github.com/mahozad/android-pie-chart/commit/e9420e85 +[ce8cda52]: https://github.com/mahozad/android-pie-chart/commit/ce8cda52 +[87195e51]: https://github.com/mahozad/android-pie-chart/commit/87195e51 [comment]: <> (NOTE: Be aware that modifying the format of this file might impact the script that makes body for GitHub release) @@ -73,3 +100,5 @@ This is the first release of the library. - deprecation 1 #### Removals - removal 1 +#### Other + - other 1 diff --git a/README.md b/README.md index 56e3c0db..e23b01bd 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ A Pie/Donut[1](#footnote-1)/Ring chart for Android. ### build.gradle[.kts] ```groovy -implementation("ir.mahozad.android:pie-chart:0.4.0") +implementation("ir.mahozad.android:pie-chart:0.5.0") ``` ### layout.xml diff --git a/piechart/build.gradle.kts b/piechart/build.gradle.kts index 4f01f86e..0583c628 100644 --- a/piechart/build.gradle.kts +++ b/piechart/build.gradle.kts @@ -14,7 +14,7 @@ plugins { } group = "ir.mahozad.android" -version = "0.4.0" +version = "0.5.0" val githubProjectName = "android-pie-chart" android { @@ -45,7 +45,7 @@ android { defaultConfig { minSdkVersion(21) targetSdkVersion(30) - versionCode = 4 + versionCode = 5 versionName = project.version.toString() testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunnerArgument("runnerBuilder", "de.mannodermaus.junit5.AndroidJUnit5Builder")