diff --git a/README.md b/README.md
index 851802d5..1001a135 100644
--- a/README.md
+++ b/README.md
@@ -11,6 +11,9 @@
![Logo](assets/logo.png)
# Changelog
+- **7.0.1 (19 apr 2019)**
+ - minor refactoring
+
- **7.0.0 (31 mar 2019)**
- **reworked and renamed some parameters for Maven and ANT plug-ins**
- **removed maven `clear` goal**
@@ -35,9 +38,9 @@ On start the preprocessor was implemented as a CLI tool but then Maven, ANT and
[The Full list of the preprocessor directives can be found in the wiki.](https://github.com/raydac/java-comment-preprocessor/wiki/PreprocessorDirectives)
The Preprocessor can be used by different ways:
- - as ANT task, and with Android SDK
+ - as ANT task
- as Maven plugin
- - [with Gradle through ANT task](https://github.com/raydac/java-comment-preprocessor/wiki/AndroidGradlePreprocessing)
+ - [with Gradle](https://github.com/raydac/java-comment-preprocessor/wiki/AndroidGradlePreprocessing)
- as Java framework with direct class calls
- as external utility through CLI (command line interface)
The Preprocessor is published in the Maven Central so that can be added in Maven projects without any problems
diff --git a/changelog.txt b/changelog.txt
index e9081ae4..e910f432 100644
--- a/changelog.txt
+++ b/changelog.txt
@@ -1,3 +1,6 @@
+7.0.1 (19 apr 2019)
+ - minor refactoring
+
7.0.0 (31 mar 2019)
- reworked some parameters for Maven and ANT plug-ins
- added embedded Gradle plugin `com.igormaznitsa.jcp`
diff --git a/jcp-tests/jcp-test-gradle/build.gradle b/jcp-tests/jcp-test-gradle/build.gradle
index ce4cd10c..90c90478 100644
--- a/jcp-tests/jcp-test-gradle/build.gradle
+++ b/jcp-tests/jcp-test-gradle/build.gradle
@@ -3,7 +3,7 @@ buildscript {
flatDir dirs: "../../jcp/target"
}
dependencies {
- classpath "com.igormaznitsa:jcp:7.0.1-SNAPSHOT"
+ classpath "com.igormaznitsa:jcp:7.0.1"
}
}
diff --git a/jcp-tests/pom.xml b/jcp-tests/pom.xml
index 4e2c1a23..e707be2e 100644
--- a/jcp-tests/pom.xml
+++ b/jcp-tests/pom.xml
@@ -8,7 +8,7 @@
pom
- 7.0.1-SNAPSHOT
+ 7.0.1
5.4.2
1.8
1.8
diff --git a/jcp/pom.xml b/jcp/pom.xml
index e02e21a5..e286115c 100644
--- a/jcp/pom.xml
+++ b/jcp/pom.xml
@@ -5,7 +5,7 @@
com.igormaznitsa
jcp-pom
- 7.0.1-SNAPSHOT
+ 7.0.1
jcp
diff --git a/jcp/src/main/java/com/igormaznitsa/jcp/InfoHelper.java b/jcp/src/main/java/com/igormaznitsa/jcp/InfoHelper.java
index 624fdb56..ba5a98e0 100644
--- a/jcp/src/main/java/com/igormaznitsa/jcp/InfoHelper.java
+++ b/jcp/src/main/java/com/igormaznitsa/jcp/InfoHelper.java
@@ -48,7 +48,7 @@ private InfoHelper() {
@Nonnull
public static String getVersion() {
- return "v7.0.1-SNAPSHOT";
+ return "v7.0.1";
}
@Nonnull
diff --git a/jcp/src/test/resources/com/igormaznitsa/jcp/maven/test.pom.xml b/jcp/src/test/resources/com/igormaznitsa/jcp/maven/test.pom.xml
index abc0df5f..7dc8100b 100644
--- a/jcp/src/test/resources/com/igormaznitsa/jcp/maven/test.pom.xml
+++ b/jcp/src/test/resources/com/igormaznitsa/jcp/maven/test.pom.xml
@@ -20,7 +20,7 @@
com.igormaznitsa
jcp
- 7.0.1-SNAPSHOT
+ 7.0.1
preprocess
diff --git a/pom.xml b/pom.xml
index db78da1a..a9975005 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
com.igormaznitsa
jcp-pom
- 7.0.1-SNAPSHOT
+ 7.0.1
pom
https://github.com/raydac/java-comment-preprocessor