diff --git a/source/index.html.haml b/source/index.html.haml
index 320d4fac071c96d336dec7d4ec7eacde2f9c64a7..f721bfc082aaa93b14c2603b4f87e6e89f7b9d00 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"} Release v1.2.0
+    %a.red-text.text-lighten-4{:href => "https://github.com/Syncleus/aparapi"} Release v1.3.0
   %br/
 
 - content_for :banner do
diff --git a/source/introduction/getting-started.html.md b/source/introduction/getting-started.html.md
index 014c615aa62ac86b392e25ca0bc4539c9ad7cb16..bbda8c1dfdae4b9dba1bbb4c450271cf98a8777a 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
 
 ## Support and Documentation
 
-Aparapi Javadocs: [latest](http://www.javadoc.io/doc/com.aparapi/aparapi) - [1.2.0](http://www.javadoc.io/doc/com.aparapi/aparapi/1.2.0) - [1.1.2](http://www.javadoc.io/doc/com.aparapi/aparapi/1.1.2) - [1.1.1](http://www.javadoc.io/doc/com.aparapi/aparapi/1.1.1) - [1.1.0](http://www.javadoc.io/doc/com.aparapi/aparapi/1.1.0) - [1.0.0](http://www.javadoc.io/doc/com.syncleus.aparapi/aparapi/1.0.0)
+Aparapi Javadocs: [latest](http://www.javadoc.io/doc/com.aparapi/aparapi) - [1.3.0](http://www.javadoc.io/doc/com.aparapi/aparapi/1.3.0) - [1.2.0](http://www.javadoc.io/doc/com.aparapi/aparapi/1.2.0) - [1.1.2](http://www.javadoc.io/doc/com.aparapi/aparapi/1.1.2) - [1.1.1](http://www.javadoc.io/doc/com.aparapi/aparapi/1.1.1) - [1.1.0](http://www.javadoc.io/doc/com.aparapi/aparapi/1.1.0) - [1.0.0](http://www.javadoc.io/doc/com.syncleus.aparapi/aparapi/1.0.0)
 
 For detailed documentation see [Aparapi.com](http://Aparapi.com) or check out the [latest Javadocs](http://www.javadoc.io/doc/com.aparapi/aparapi).
 
@@ -26,13 +26,16 @@ Please file bugs and feature requests on [Github](https://github.com/Syncleus/ap
 This particular repository only represents the core Java library. There are several other related repositories worth taking a look at.
 
 * [Aparapi Examples](https://github.com/Syncleus/aparapi-examples) - A collection of Java examples to showcase the Aparapi library and help developers get started.
-* [Aparapi JNI](https://github.com/Syncleus/aparapi-jni) - Represents the native library component. Without this the Java library can't talk to the graphics card.
+* [Aparapi JNI](https://github.com/Syncleus/aparapi-jni) - A java JAR which embeds and loads the native components at runtime. This prevents the need to seperately install the Aparapi Native library.
+* [Aparapi Native](https://github.com/Syncleus/aparapi-native) - The native library component. Without this the Java library can't talk to the graphics card. This is not a java project but rather a C/C++ project.
 * [Aparapi Archlinux AUR](https://github.com/Syncleus/aparapi-archlinux) - An Archlinux AUR for installing the Aparapi JNI.
 * [Aparapi Archlinux Repository](https://github.com/Syncleus/aparapi-archlinux-repo) - A Archlinux binary repository containing all versions of the Aparapi JNI for easy installation.
 
 ## Prerequisites
 
-Aparapi will run as-is on the CPU, however in order to access the GPU it requires an Aparapi JNI native library to be installed first. To do that see the [Aparapi JNI](https://github.com/Syncleus/aparapi-jni) project for more details. 
+Aparapi will run as-is on the CPU, however in order to access the GPU it requires OpenCL to be installed on the local system. If OpenCL isnt found then the library will just fallback to CPU mode. 
+
+**Note: It is no longer required to manually install the [Aparapi JNI native interface](https://github.com/Syncleus/aparapi-native), this is now done automatically through maven as a dependency on Aparapi.**
 
 ## Java Dependency
 
@@ -43,7 +46,7 @@ To include Aparapi in your project of choice include the following Maven depende
 <dependency>
     <groupId>com.aparapi</groupId>
     <artifactId>aparapi</artifactId>
-    <version>1.2.0</version>
+    <version>1.3.0</version>
 </dependency>
 ```