Skip to content

Commit 27d06be

Browse files
authored
Merge pull request #3 from nlamirault/develop
Release 0.2.0
2 parents 94bda9a + d89c631 commit 27d06be

File tree

5 files changed

+20
-6
lines changed

5 files changed

+20
-6
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Emacs
2+
*~
3+
.cask/
4+
*.elc
5+
elpa
6+
.projectile
7+

ChangeLog.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# opensource.el ChangeLog
22

3-
# Version 0.1.0
3+
# Version 0.2.0 (2016-08-02)
4+
5+
- Setup continuous integration
6+
- Update documentation
7+
- #PR1: Use newer melpa URL
8+
9+
# Version 0.1.0 (2016-06-20)
410

511
- Get a list of all licenses
612
- Get a license

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
[![Coverage Status](https://coveralls.io/repos/nlamirault/opensource.el/badge.png)](https://coveralls.io/r/nlamirault/opensource.el)
44

55
Master :
6-
* [![MELPA Stable](https://stable.melpa.org/packages/opensource.el.svg)](https://stable.melpa.org/#/opensource.el)
6+
* [![MELPA Stable](https://stable.melpa.org/packages/opensource.svg)](https://stable.melpa.org/#/opensource)
77
* [![Circle CI](https://circleci.com/gh/nlamirault/opensource.el/tree/master.svg?style=svg)](https://circleci.com/gh/nlamirault/opensource.el/tree/master)
88

99
Develop:
10-
* [![Melpa Status](https://melpa.org/packages/opensource.el-badge.svg)](https://melpa.org/#/opensource.el)
10+
* [![Melpa Status](https://melpa.org/packages/opensource-badge.svg)](https://melpa.org/#/opensource)
1111
* [![Circle CI](https://circleci.com/gh/nlamirault/opensource.el/tree/develop.svg?style=svg)](https://circleci.com/gh/nlamirault/opensource.el/tree/develop)
1212

1313
Emacs client for the [Opensource API](https://api.opensource.org/)

opensource.el

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
;; Author: Nicolas Lamirault <[email protected]>
44
;; URL: https://github.com/nlamirault/opensource.el
5-
;; Version: 0.1.0
5+
;; Version: 0.2.0
66
;; Keywords: opensource
77

88
;; Package-Requires: ((s "1.11.0") (dash "2.12.1") (pkg-info "0.6.0") (request "0.2.0"))
@@ -27,7 +27,8 @@
2727

2828
;;; Installation:
2929

30-
;; Available as a package in melpa.org.
30+
;; opensource is available on the two major community maintained repositories -
31+
;; Melpa stable (https://stable.melpa.org), and Melpa (https://melpa.org)
3132

3233
;; (add-to-list 'package-archives
3334
;; '("melpa" . "https://melpa.org/packages/") t)

test/opensource-version-test.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
(require 'pkg-info)
2222

23-
(setq current-version "0.1.0")
23+
(setq current-version "0.2.0")
2424

2525
(ert-deftest opensource-library-version ()
2626
(with-test-sandbox

0 commit comments

Comments
 (0)