Skip to content

Commit

Permalink
Increment the version and update the changelog
Browse files Browse the repository at this point in the history
Signed-off-by: Mahdi Hosseinzadeh <mdihosseinzadeh@gmail.com>
  • Loading branch information
mahozad committed Aug 1, 2021
1 parent 1a2f44e commit 88a0bca
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 8 deletions.
39 changes: 34 additions & 5 deletions 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])
Expand Down Expand Up @@ -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]

Expand All @@ -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
Expand All @@ -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)

Expand All @@ -73,3 +100,5 @@ This is the first release of the library.
- deprecation 1
#### Removals
- removal 1
#### Other
- other 1
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -27,7 +27,7 @@ A Pie/Donut<sup id="ref-1">[1](#footnote-1)</sup>/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
Expand Down
4 changes: 2 additions & 2 deletions piechart/build.gradle.kts
Expand Up @@ -14,7 +14,7 @@ plugins {
}

group = "ir.mahozad.android"
version = "0.4.0"
version = "0.5.0"
val githubProjectName = "android-pie-chart"

android {
Expand Down Expand Up @@ -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")
Expand Down

0 comments on commit 88a0bca

Please sign in to comment.