diff --git a/README.md b/README.md
index 583426e4374cd230fb3a2467d430b04e6cf294f6..abc1f2ecbc6fc188dffc79235bfaea792f52d6e9 100644
--- a/README.md
+++ b/README.md
@@ -17,7 +17,7 @@ Apply the plugin:
 
 ```groovy
 plugins {
-	id "de.hhu.stups.sablecc" version "1.0.0"
+	id "de.hhu.stups.sablecc" version "1.1.0"
 }
 ```
 
@@ -58,6 +58,16 @@ tasks.named("generateSableCCSource").configure {
 }
 ```
 
+## Changelog
+
+## Version 1.1.0
+
+* Fix `sourcesJar` task not always depending on `generateSableCCSource` as intended. This caused deprecation warnings from Gradle about undeclared dependencies.
+
+## Version 1.0.0
+
+* Initial release.
+
 ## License
 
 The source code is distributed under the [Eclipse Public License - v 2.0](LICENSE.txt).
diff --git a/build.gradle b/build.gradle
index ea4fed57e47d4c154065735539f39c25aef46867..43bb91f93301f7593aeccec30a252972d34f7f12 100644
--- a/build.gradle
+++ b/build.gradle
@@ -3,7 +3,7 @@ plugins {
 }
 
 group = "de.hhu.stups"
-version = "1.0.0"
+version = "1.1.0"
 
 java {
 	sourceCompatibility = JavaVersion.VERSION_1_8