Skip to content

Commit

Permalink
Prepare release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kaklakariada committed Jun 19, 2021
1 parent cc17628 commit f6a7dab
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 14 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.2.0 - Unreleased]
## [0.2.0] - 2021-06-19

- [#5](https://github.com/itsallcode/holiday-calculator/issues/5) Support month names.
- [#7](https://github.com/itsallcode/holiday-calculator/issues/7) Added documentation for API users.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ repositories {
mavenCentral()
}
dependencies {
compile 'org.itsallcode:holiday-calculator:0.1.0'
compile 'org.itsallcode:holiday-calculator:0.2.0'
}
```

Expand All @@ -40,7 +40,7 @@ dependencies {
<dependency>
<groupId>org.itsallcode</groupId>
<artifactId>holiday-calculator</artifactId>
<version>0.1.0</version>
<version>0.2.0</version>
</dependency>
```

Expand Down
21 changes: 10 additions & 11 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
}

group 'org.itsallcode'
version = '0.1.1'
version = '0.2.0'

java {
toolchain {
Expand Down Expand Up @@ -38,32 +38,31 @@ test {

ext {
junitVersion = '5.7.2'
log4jVersion = '2.14.1'
log4jVersion = '2.14.1'
mockitoVersion = '3.10.0'
lockbackVersion = '1.2.3'
lockbackVersion = '1.2.3'
}

dependencies {
implementation 'org.slf4j:slf4j-api:1.7.30'

testImplementation "org.mockito:mockito-core:$mockitoVersion"
testImplementation 'org.assertj:assertj-core:3.19.0'
testImplementation "org.mockito:mockito-junit-jupiter:$mockitoVersion"
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
testImplementation "org.junit.jupiter:junit-jupiter-params:$junitVersion"
testImplementation "org.mockito:mockito-junit-jupiter:$mockitoVersion"
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
testImplementation "org.junit.jupiter:junit-jupiter-params:$junitVersion"

testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
// testRuntimeOnly "org.apache.logging.log4j:log4j-core:$log4jVersion"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
testRuntimeOnly "ch.qos.logback:logback-classic:$lockbackVersion"
}

license {
header = file('gradle/license-header.txt')
ext.project = 'holiday-calculator'
ext.year = Calendar.getInstance().get(Calendar.YEAR)
ext.project = 'holiday-calculator'
ext.year = Calendar.getInstance().get(Calendar.YEAR)
ext.name = 'itsallcode'
ext.email = '[email protected]'
include '**/*.java'
include '**/*.java'
}

jacocoTestReport {
Expand Down

0 comments on commit f6a7dab

Please sign in to comment.