aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Topolnjak <ivantopo@gmail.com>2014-04-24 21:30:05 -0300
committerIvan Topolnjak <ivantopo@gmail.com>2014-04-24 21:30:05 -0300
commitf90192f9124e7a5649b93579b3971ce37ef93a27 (patch)
tree228b01b924bc9e7ffb3159d070942bcc7097740d
parent2febdf62323e5142eaf2c783876bdd3bc8c2271d (diff)
downloadKamon-f90192f9124e7a5649b93579b3971ce37ef93a27.tar.gz
Kamon-f90192f9124e7a5649b93579b3971ce37ef93a27.tar.bz2
Kamon-f90192f9124e7a5649b93579b3971ce37ef93a27.zip
+ site: announce 0.2.0 and 0.3.0 releases
-rw-r--r--site/src/main/jekyll/_posts/2014-04-24-kamon-for-akka-2-3-is-now-available.md19
-rw-r--r--site/src/main/jekyll/changelog.md14
-rw-r--r--site/src/main/jekyll/get-started.md11
3 files changed, 38 insertions, 6 deletions
diff --git a/site/src/main/jekyll/_posts/2014-04-24-kamon-for-akka-2-3-is-now-available.md b/site/src/main/jekyll/_posts/2014-04-24-kamon-for-akka-2-3-is-now-available.md
new file mode 100644
index 00000000..6f1c7ab8
--- /dev/null
+++ b/site/src/main/jekyll/_posts/2014-04-24-kamon-for-akka-2-3-is-now-available.md
@@ -0,0 +1,19 @@
+---
+layout: post
+title: Kamon for Akka 2.3 is now available!
+date: 2014-04-24
+categories: teamblog
+tags: announcement
+---
+
+Dear community,
+
+We are happy to announce that Kamon 0.3.0, our latest release is out and compatible with Akka 2.3! From now on, all of
+our releases will come in pairs with aligned with the Akka versions:
+
+* 0.3.x releases are compatible with Akka 2.3, Spray 1.3 and Play 2.3-M1.
+* 0.2.x releases are compatible with Akka 2.2, Spray 1.2 and Play 2.2.
+
+The 0.3.0/0.2.0 releases contain exactly the same feature set as our 0.0.15 release, we just made the necessary changes
+to make it compatible with Akka 2.3. If you were waiting for this release, then go and [get started](/get-started) right
+away! \ No newline at end of file
diff --git a/site/src/main/jekyll/changelog.md b/site/src/main/jekyll/changelog.md
index 52dbfb2c..5c0ee4ff 100644
--- a/site/src/main/jekyll/changelog.md
+++ b/site/src/main/jekyll/changelog.md
@@ -7,7 +7,15 @@ Changelog
=========
<hr>
-Version 0.0.15 (2014-04-10)
+Version 0.3.0/0.2.0 <small>(2014-04-24)</small>
+--------------------------------
+
+* Same feature set as 0.0.15 but now available for Akka 2.2 and Akka 2.3:
+ * 0.3.0 is compatible with Akka 2.3, Spray 1.3 and Play 2.3-M1.
+ * 0.2.0 is compatible with Akka 2.2, Spray 1.2 and Play 2.2.
+
+<hr>
+Version 0.0.15 <small>(2014-04-10)</small>
---------------------------
* kamon
@@ -28,8 +36,8 @@ Version 0.0.15 (2014-04-10)
<hr>
-Version 0.0.14 (2014-03-17)
-----------------
+Version 0.0.14 <small>(2014-03-17)</small>
+---------------------------
* kamon-core
* Improved startup times
* Remake of trace metrics collection
diff --git a/site/src/main/jekyll/get-started.md b/site/src/main/jekyll/get-started.md
index 5bd0f9f8..07c59654 100644
--- a/site/src/main/jekyll/get-started.md
+++ b/site/src/main/jekyll/get-started.md
@@ -20,16 +20,21 @@ All Kamon components are available through Sonatype and Maven Central and no spe
If you are using SBT, you will need to add something like this to your build definition:
```scala
-libraryDependencies += "io.kamon" % "kamon-core" % "0.0.15"
+libraryDependencies += "io.kamon" % "kamon-core" % "0.3.0"
```
Then, add any additional module you need:
-* kamon-core (only compatible with Akka 2.2.x)
-* kamon-spray (only compatible with Spray 1.2.x)
+* kamon-core
+* kamon-spray
* kamon-statsd
* kamon-newrelic
+### Compatibility Notes: ###
+
+* 0.3.x releases are compatible with Akka 2.3, Spray 1.3 and Play 2.3-M1.
+* 0.2.x releases are compatible with Akka 2.2, Spray 1.2 and Play 2.2.
+
Second: Start your app with the AspectJ Weaver
----------------------------------------------