From 1626a56bdd1f2a23614362d0e4bfecf28ffd2f91 Mon Sep 17 00:00:00 2001
From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com>
Date: Sat, 3 Dec 2016 23:16:20 -0500
Subject: [PATCH] Updated web page for the latest release.

---
 source/index.html.haml                      |  2 +-
 source/introduction/getting-started.html.md | 12 +++++-------
 2 files changed, 6 insertions(+), 8 deletions(-)

diff --git a/source/index.html.haml b/source/index.html.haml
index 57c956a..f7f5c22 100644
--- a/source/index.html.haml
+++ b/source/index.html.haml
@@ -7,7 +7,7 @@ description: Open-source framework for executing native Java code on the GPU.
   .row.center
     %a#download-button.btn-large.waves-effect.waves-light{:href => "/introduction/getting-started.html"} Get Started
   .row.center
-    %a.red-text.text-lighten-4{:href => "https://github.com/Syncleus/aparapi"} beta release v1.0.0
+    %a.red-text.text-lighten-4{:href => "https://github.com/Syncleus/aparapi"} Latest release v1.1.2
   %br/
 
 - content_for :banner do
diff --git a/source/introduction/getting-started.html.md b/source/introduction/getting-started.html.md
index e31f003..6038257 100644
--- a/source/introduction/getting-started.html.md
+++ b/source/introduction/getting-started.html.md
@@ -13,7 +13,7 @@ Aparapi was originally a project conceived and developed by AMD corporation. It
 
 For detailed documentation see [Aparapi.com](http://Aparapi.com) or check out the [latest Javadocs](http://www.javadoc.io/doc/com.syncleus.ferma/ferma).
 
-For support please use [Gitter](https://gitter.im/Syncleus/aparapi) or the [official Aparapi mailing list](https://groups.google.com/a/syncleus.com/d/forum/aparapi-list).
+For support please use [Gitter](https://gitter.im/Syncleus/aparapi) or the [official Aparapi mailing list](https://groups.google.com/d/forum/aparapi).
 
 Please file bugs and feature requests on [Github](https://github.com/Syncleus/aparapi/issues).
 
@@ -24,9 +24,9 @@ To include Aparapi in your project of choice include the following Maven depende
 ```xml
 
 <dependency>
-    <groupId>com.syncleus.aparapi</groupId>
+    <groupId>com.aparapi</groupId>
     <artifactId>aparapi</artifactId>
-    <version>1.0.0</version>
+    <version>1.1.2</version>
 </dependency>
 ```
 
@@ -39,7 +39,7 @@ following command.
 
 git clone https://github.com/Syncleus/aparapi.git
 ```
-    
+
 ## Getting Started
 
 With Aparapi we can take a sequential loop such as this (which adds each element from inA and inB arrays and puts the result in result).
@@ -70,6 +70,4 @@ Kernel kernel = new Kernel() {
 
 Range range = Range.create(result.length);
 kernel.execute(range);
-```
-
-In the above code we extend com.syncleus.aparapi.Kernel base class and override the Kernel.run() method to express our data parallel algorithm. We initiate the execution of the Kernel(over a specific range 0..results.length) using Kernel.execute(range).
+```
\ No newline at end of file
-- 
GitLab