0.9.2 release
diff --git a/doc/site/site.gradle b/doc/site/site.gradle
index f1d38fd..dc3fc50 100644
--- a/doc/site/site.gradle
+++ b/doc/site/site.gradle
@@ -40,10 +40,10 @@
 
 ext {
 	// The version of manual to put under the “current” label
-	stableVersion = "0.9.1"
+	stableVersion = "0.9.2"
 
 	// The old versions of Geb we are including manuals for
-	oldManualVersions = ["0.6.0", "0.6.1", "0.6.2", "0.6.3", "0.7.0", "0.7.1", "0.7.2", "0.9.0"]
+	oldManualVersions = ["0.6.0", "0.6.1", "0.6.2", "0.6.3", "0.7.0", "0.7.1", "0.7.2", "0.9.0", "0.9.1"]
 }
 
 def manualDependency = {
diff --git a/geb.gradle b/geb.gradle
index aae8dff..b01c132 100644
--- a/geb.gradle
+++ b/geb.gradle
@@ -21,7 +21,7 @@
 }
 
 allprojects { project ->
-	version = '0.9.2-SNAPSHOT'
+	version = '0.9.2'
 	group = 'org.gebish'
 	
 	ext {
@@ -181,6 +181,10 @@
 	}
 }
 
+task release {
+	dependsOn ':integration:geb-grails:publish', publishedModules.collect { project(it) }*.uploadArchives
+}
+
 if (hasProperty('enableClover')) {
 	configure(subprojects.findAll { it.parent == project(':module') } + rootProject) {
 		apply from: rootProject.file("gradle/clover.gradle")
diff --git a/integration/geb-grails/geb-grails.gradle b/integration/geb-grails/geb-grails.gradle
index cecab46..c35b98b 100644
--- a/integration/geb-grails/geb-grails.gradle
+++ b/integration/geb-grails/geb-grails.gradle
@@ -130,7 +130,7 @@
 	command "test-app"
 }
 
-task release(type: GrailsTask, dependsOn: packagePlugin) {
+task publish(type: GrailsTask, dependsOn: packagePlugin) {
 	bootstrapClasspath = configurations.releaseBootstrap
 	command "publish-plugin"