From 79b2be85c3677368169967c44211a0d66769d27d Mon Sep 17 00:00:00 2001
From: Ben Chatelain <ben@octop.ad>
Date: Fri, 29 Dec 2017 13:15:54 -0700
Subject: [PATCH 1/2] Add changelog

---
 CHANGELOG.md | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 CHANGELOG.md

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)

From 13635b6c197f27cfd8f46dec5f8ab6b3c8f71efb Mon Sep 17 00:00:00 2001
From: Ben Chatelain <ben@octop.ad>
Date: Fri, 29 Dec 2017 13:16:47 -0700
Subject: [PATCH 2/2] Version 1.0.0

---
 build.gradle.kts               | 2 +-
 src/main/resources/VERSION.txt | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

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