diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..83b1a77 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,20 @@ +# ShellExec CHANGELOG + +## Unreleased + + + +## 1.0.0 + +- Initial release + - Simpler API than Exec (`command` string vs. `commandLine` list) + - Append/prepend to `PATH` + - Supports command pipes and conditional command chains + - Easy access to `stdout`/`stderr` + +⚠️ Not compatible with `Exec` tasks yet (#11), but the current API is very similar. + +## 0.1.0 + +- Test release +- Original name: [SimpleExec](https://bintray.com/phatblat/maven-open-source/SimpleExec) diff --git a/build.gradle.kts b/build.gradle.kts index 9746567..213ced6 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -19,7 +19,7 @@ import org.junit.platform.gradle.plugin.JUnitPlatformExtension /* -------------------------------------------------------------------------- */ group = "at.phatbl" -version = "0.1.0" +version = "1.0.0" val kotlinVersion: String by extra project.logger.lifecycle("kotlinVersion: $kotlinVersion") diff --git a/src/main/resources/VERSION.txt b/src/main/resources/VERSION.txt index 6c6aa7c..afaf360 100644 --- a/src/main/resources/VERSION.txt +++ b/src/main/resources/VERSION.txt @@ -1 +1 @@ -0.1.0 \ No newline at end of file +1.0.0 \ No newline at end of file