diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000..e08b053
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,18 @@
+## 0.0.1 - 2015-01-07
+
+### Added
+
+- Add git toolbar logo
+- Add git version info
+- Add directory info
+- Add repository size info
+- Add branches list
+- Add highlight current branch
+- Add tags list
+- Add enabled hooks list
+- Add remotes list
+- Add readme - description
+- Add readme - about
+- Add readme - installation
+- Add readme - credits
+- Add changelog
diff --git a/view/zend-developer-tools/toolbar/git-data.phtml b/view/zend-developer-tools/toolbar/git-data.phtml
index 2e6a7e9..fd01c70 100644
--- a/view/zend-developer-tools/toolbar/git-data.phtml
+++ b/view/zend-developer-tools/toolbar/git-data.phtml
@@ -15,25 +15,27 @@
= ucfirst($this->translate('size')) ?>
= $collector->getSize() ?>
-
-
- = ucfirst($this->translatePlural('branch', 'branches', 2)) ?>
-
- getRepository()->getReferences()->getLocalBranches() as $branch) { ?>
- = $branch->getName() ?>
-
+
+
+
+ = ucfirst($this->translatePlural('branch', 'branches', 2)) ?>
+
+ getRepository()->getReferences()->getLocalBranches() as $branch) { ?>
+ = $branch->getName() ?>
+
+
-
-
- = ucfirst($this->translatePlural('tag', 'tags', 2)) ?>
-
- getTags() as $tag) { ?>
- = $tag->getName() ?>
-
+
+ = ucfirst($this->translatePlural('tag', 'tags', 2)) ?>
+
+ getTags() as $tag) { ?>
+ = $tag->getName() ?>
+
+
-
- = $this->ZendDeveloperToolsDetailArray(ucfirst($this->translatePlural('hook', 'hooks', 2)), $collector->getEnabledHooks()) ?>
- = $this->ZendDeveloperToolsDetailArray(ucfirst($this->translatePlural('remote', 'remotes', 2)), $collector->getRemotes()) ?>
-
+ = $this->ZendDeveloperToolsDetailArray(ucfirst($this->translatePlural('hook', 'hooks', 2)), $collector->getEnabledHooks()) ?>
+ = $this->ZendDeveloperToolsDetailArray(ucfirst($this->translatePlural('remote', 'remotes', 2)), $collector->getRemotes()) ?>
+
+