Skip to content

Commit

Permalink
Increment the version and update the changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
mahozad committed May 31, 2021
1 parent 64a1f18 commit 5fa13b3
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 16 deletions.
31 changes: 21 additions & 10 deletions 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
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions piechart/build.gradle.kts
Expand Up @@ -10,7 +10,7 @@ plugins {
}

group = "ir.mahozad.android"
version = "0.1.0"
version = "0.2.0"

android {
sourceSets {
Expand Down Expand Up @@ -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")
Expand Down Expand Up @@ -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 {
Expand Down Expand Up @@ -173,7 +173,7 @@ afterEvaluate {
from(components["debug"])
groupId = "ir.mahozad.android"
artifactId = "pie-chart-debug"
version = "0.1.0"
version = project.version.toString()
}
}
}
Expand Down

0 comments on commit 5fa13b3

Please sign in to comment.