Skip to content

Commit 77607e6

Browse files
committed
build: advance version to 0.2.3
1 parent 2a6e3da commit 77607e6

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

build.gradle

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ plugins {
44
}
55

66
group 'com.github.lppedd'
7-
version '0.2.2'
7+
version '0.2.3'
88

9-
sourceCompatibility = JavaVersion.VERSION_12
9+
sourceCompatibility = JavaVersion.VERSION_14
1010

1111
repositories {
1212
mavenCentral()
@@ -15,14 +15,17 @@ repositories {
1515

1616
dependencies {
1717
testCompile group: 'junit', name: 'junit', version: '4.12'
18+
1819
annotationProcessor 'com.github.bsideup.jabel:jabel-javac-plugin:0.2.0'
20+
annotationProcessor 'net.bytebuddy:byte-buddy:1.10.8'
21+
annotationProcessor 'net.bytebuddy:byte-buddy-agent:1.10.8'
1922
}
2023

2124
intellij {
2225
version 'IU-2019.2'
2326
downloadSources true
2427
plugins = [
25-
'com.github.lppedd.idea-conventional-commit:0.2.0',
28+
'com.github.lppedd.idea-conventional-commit:0.7.0',
2629
'JavaScriptLanguage',
2730
'AngularJS'
2831
]
@@ -37,7 +40,8 @@ patchPluginXml {
3740
}
3841

3942
compileJava {
43+
options.fork = true
4044
options.compilerArgs = [
41-
"--release", "8" // Avoid using Java 12 APIs
45+
"--release", "8"
4246
]
4347
}

change_notes/0_2_3.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<h3>0.2.3 (27/03/2020)</h3>
2+
<p>
3+
Sixth alpha release.
4+
</p>
5+
<ul>
6+
<li>Updated to align to new Conventional Commit signatures</li>
7+
</ul>

0 commit comments

Comments
 (0)