diff --git a/build.sbt b/build.sbt
index 4613cf83..c301fb8f 100644
--- a/build.sbt
+++ b/build.sbt
@@ -2,7 +2,7 @@ organization := "com.rbmhtechnology"
name := "eventuate"
-version := "0.2-SNAPSHOT"
+version := "0.3-SNAPSHOT"
scalaVersion := "2.11.4"
diff --git a/src/sphinx/conf.py b/src/sphinx/conf.py
index 5610aa29..b0d1877b 100644
--- a/src/sphinx/conf.py
+++ b/src/sphinx/conf.py
@@ -9,8 +9,8 @@
master_doc = 'index'
project = u'Eventuate'
copyright = u'2015 Red Bull Media House'
-version = '0.2-SNAPSHOT'
-release = '0.2-SNAPSHOT'
+version = '0.3-SNAPSHOT'
+release = '0.3-SNAPSHOT'
exclude_patterns = []
highlight_language = 'scala'
html_title = 'Eventuate'
diff --git a/src/sphinx/download.rst b/src/sphinx/download.rst
index f6a230a1..a7ef439e 100644
--- a/src/sphinx/download.rst
+++ b/src/sphinx/download.rst
@@ -21,7 +21,7 @@ To include the latest release into a Maven project, add the following to your ``
com.rbmhtechnology
eventuate_2.11
- 0.1
+ 0.2
To include the latest development snapshot::
@@ -35,7 +35,7 @@ To include the latest development snapshot::
com.rbmhtechnology
eventuate_2.11
- 0.2-SNAPSHOT
+ 0.3-SNAPSHOT
SBT
@@ -45,13 +45,13 @@ To include the latest release into an sbt_ project, add the following to your ``
resolvers += "Eventuate Releases" at "https://dl.bintray.com/rbmhtechnology/maven"
- libraryDependencies += "com.rbmhtechnology" %% "eventuate" % "0.1"
+ libraryDependencies += "com.rbmhtechnology" %% "eventuate" % "0.2"
To include the latest development snapshot::
resolvers += "OJO Snapshots" at "https://oss.jfrog.org/oss-snapshot-local"
- libraryDependencies += "com.rbmhtechnology" %% "eventuate" % "0.2-SNAPSHOT"
+ libraryDependencies += "com.rbmhtechnology" %% "eventuate" % "0.3-SNAPSHOT"
Sources
-------