diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index b5eef53..b98be72 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -9,7 +9,7 @@ try to follow these guidelines when you do so.
* Check that the issue has not already been reported.
* Check that the issue has not already been fixed in the latest code
- (a.k.a. `master`).
+ (a.k.a. `develop`).
* Be clear, concise and precise in your description of the problem.
* Open an issue with a descriptive title and a summary in grammatically correct,
complete sentences.
diff --git a/ChangeLog.md b/ChangeLog.md
index ed2cf45..f00206a 100644
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,9 @@
# emacs-gitlab ChangeLog
+## Version 0.7.0 (10/12/2015)
+
+- Setup continuous integration using CircleCI
+
## Version 0.6.0 (08/31/2015)
- Addons for to generate an Org file from Gitlab issues
diff --git a/README.md b/README.md
index b11b60e..c505f48 100644
--- a/README.md
+++ b/README.md
@@ -1,16 +1,17 @@
# emacs-gitlab
[![License GPL 3][badge-license]][LICENSE]
-[![travis][badge-travis]][travis]
-[![drone][badge-drone]][drone]
-[![Melpa Status](http://melpa.milkbox.net/packages/gitlab-badge.svg)](http://melpa.milkbox.net/#/gitlab)
-[![MELPA Stable](http://stable.melpa.org/packages/gitlab-badge.svg)](http://stable.melpa.org/#/gitlab)
[![Coverage Status](https://coveralls.io/repos/nlamirault/emacs-gitlab/badge.png)](https://coveralls.io/r/nlamirault/emacs-gitlab)
+Master :
+* [![MELPA Stable](http://stable.melpa.org/packages/gitlab-badge.svg)](http://stable.melpa.org/#/gitlab)
+* [![Circle CI](https://circleci.com/gh/nlamirault/emacs-gitlab/tree/master.svg?style=svg)](https://circleci.com/gh/nlamirault/emacs-gitlab/tree/master)
-Emacs package `gitlab` provides :
-* a REST client to the [Gitlab][] API
-* a [Helm][] interface
+Develop:
+* [![Melpa Status](http://melpa.milkbox.net/packages/gitlab-badge.svg)](http://melpa.milkbox.net/#/gitlab)
+* [![Circle CI](https://circleci.com/gh/nlamirault/emacs-gitlab/tree/develop.svg?style=svg)](https://circleci.com/gh/nlamirault/emacs-gitlab/tree/develop)
+
+Package `gitlab` provides a REST client to the [Gitlab][] API.
## Installation
@@ -21,7 +22,7 @@ Emacs package `gitlab` provides :
emacs-gitlab is available on the two major community maintained repositories -
[MELPA STABLE](melpa-stable.milkbox.net), [MELPA](http://melpa.milkbox.net).
-You can install `emacs-gitlab` with the following commnad:
+You can install `gitlab` with the following commnad:
M-x package-install [RET] gitlab [RET]
@@ -106,8 +107,8 @@ Or use :
### Cask
-``emacs-gitlab`` use [Cask][] for dependencies
-management. Install it and retrieve dependencies :
+``gitlab`` use [Cask][] for dependencies management.
+Install it and retrieve dependencies :
$ curl -fsSkL https://raw.github.com/cask/cask/master/go | python
$ export PATH="$HOME/.cask/bin:$PATH"
diff --git a/circle.yml b/circle.yml
new file mode 100644
index 0000000..d209fba
--- /dev/null
+++ b/circle.yml
@@ -0,0 +1,14 @@
+machine:
+ services:
+ - docker
+
+dependencies:
+ pre:
+ - sudo add-apt-repository -y ppa:cassou/emacs
+ - sudo add-apt-repository -y ppa:ubuntu-elisp/ppa
+ - sudo apt-get update -qq
+ - sudo apt-get install -qq emacs24-nox emacs-snapshot-nox
+ - curl -fsSkL "https://raw.github.com/cask/cask/master/go" | python
+test:
+ override:
+ - PATH="${HOME}/.cask/bin:$PATH" make test
diff --git a/gitlab.el b/gitlab.el
index 6330ac0..d62682c 100644
--- a/gitlab.el
+++ b/gitlab.el
@@ -2,7 +2,7 @@
;; Author: Nicolas Lamirault
;; URL: https://github.com/nlamirault/emacs-gitlab
-;; Version: 0.6.0
+;; Version: 0.7.0
;; Keywords: gitlab
;; Package-Requires: ((s "1.9.0") (dash "2.9.0") (pkg-info "0.5.0") (request "0.1.0"))
diff --git a/test/gitlab-version-test.el b/test/gitlab-version-test.el
index 3f743fc..29c9287 100644
--- a/test/gitlab-version-test.el
+++ b/test/gitlab-version-test.el
@@ -26,7 +26,7 @@
(ert-deftest gitlab-library-version ()
:tags '(version)
(with-test-sandbox
- (should (string= "0.6.0" (gitlab--library-version)))))
+ (should (string= "0.7.0" (gitlab--library-version)))))
(provide 'gitlab-version-test)