diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ecfd812..cf685b4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,27 @@ # History of notable changes introduced in each version -## v0.2.0 (2021-02-03) +## v0.2.0 (2021-05-29) #### New features -- new feature 1 -#### Changes -- change 1 -#### Bug fixes -- bug fix 1 -#### Deprecations -- deprecation 1 -#### Removals -- removal 1 + - Outside label (currently not supporting icon) + - Outward Pointer for slices + - Label icon for inside labels + - Properties for changing label colors +#### Updates + - Attributes are now public to use in layouts ## v0.1.0 (2021-05-19) This is the first release of the library. + + +# Template: +## vx.y.z (yyyy-MM-dd) +#### New features + - new feature 1 +#### Updates + - change 1 +#### Bug fixes + - bug fix 1 +#### Deprecations + - deprecation 1 +#### Removals + - removal 1 diff --git a/README.md b/README.md index 3c53054d..b41785ec 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ ### build.gradle[.kts] ```groovy -implementation("ir.mahozad.android:pie-chart:0.1.0") +implementation("ir.mahozad.android:pie-chart:0.2.0") ``` ### layout.xml diff --git a/piechart/build.gradle.kts b/piechart/build.gradle.kts index 74214f84..38c1b559 100644 --- a/piechart/build.gradle.kts +++ b/piechart/build.gradle.kts @@ -10,7 +10,7 @@ plugins { } group = "ir.mahozad.android" -version = "0.1.0" +version = "0.2.0" android { sourceSets { @@ -39,8 +39,8 @@ android { defaultConfig { minSdkVersion(21) targetSdkVersion(30) - versionCode = 1 - versionName = "0.1.0" + versionCode = 2 + versionName = project.version.toString() testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunnerArgument("runnerBuilder", "de.mannodermaus.junit5.AndroidJUnit5Builder") consumerProguardFiles("consumer-rules.pro") @@ -128,7 +128,7 @@ afterEvaluate { // You can then customize attributes of the publication as shown below groupId = "ir.mahozad.android" artifactId = "pie-chart" - version = "0.1.0" + version = project.version.toString() artifact(sourcesArtifact) artifact(javadocArtifact) pom { @@ -173,7 +173,7 @@ afterEvaluate { from(components["debug"]) groupId = "ir.mahozad.android" artifactId = "pie-chart-debug" - version = "0.1.0" + version = project.version.toString() } } }