diff --git a/news/fmounier/2012-09-17@12:00:00.rst b/news/fmounier/2012-09-17@12:00:00.rst
index c53a08f..08f738d 100644
--- a/news/fmounier/2012-09-17@12:00:00.rst
+++ b/news/fmounier/2012-09-17@12:00:00.rst
@@ -1,14 +1,19 @@
-Pygal 0.12.0
+Pygal 0.12.1
============
-Pygal 0.12.0 is out!
+Pygal 0.12.1 is out!
Get it via `PyPi `_.
Changelog
---------
+- Cabaret is online, check out the new pygal chart generator here: `cabaret.pygal.org `_.
+
+.. image:: /news/cabaret.png
+ :target: http://cabaret.pygal.org/
+
- Core rewrite of the instanciation mechanism. Now it works with ghost objects holding configuration and values. Those phantoms instanciate the real objects only when the render function is called. It simplifies a lot of code.
- Support of label indexed values, ie:
@@ -29,3 +34,7 @@ Changelog
chart.add('Serie', {'value': 2, 'label': 'my only value'}) # Don't write that
chart.add('Serie', [{'value': 2, 'label': 'my only value'}]) # Write this instead
+
+- New config self description for cabaret
+
+- Minor fixes
diff --git a/static/css/style.css b/static/css/style.css
index 99bef80..70076df 100644
--- a/static/css/style.css
+++ b/static/css/style.css
@@ -330,3 +330,9 @@ footer ul li a:focus {
float: right;
margin: 10px;
}
+
+section img {
+ margin-left: 5%;
+ width: 90%;
+ max-width: 1218px;
+}
diff --git a/static/news/cabaret.png b/static/news/cabaret.png
new file mode 100644
index 0000000..1ae49cd
Binary files /dev/null and b/static/news/cabaret.png differ