Skip to content

Commit

Permalink
Bump version: 1.5.0 → 1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgenschaefer committed Aug 10, 2014
1 parent f6eab57 commit d24232e
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.5.0
current_version = 1.5.1
files = elpy.el elpy/__init__.py Cask elpy-pkg.el docs/conf.py
commit = True
tag = True
Expand Down
2 changes: 1 addition & 1 deletion Cask
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
;; (source "melpa-stable" "http://hiddencameras.milkbox.net/packages/")
(source melpa)

(package "elpy" "1.5.0" "Emacs Python Development Environment")
(package "elpy" "1.5.1" "Emacs Python Development Environment")

(depends-on "company" "0.8.0")
(depends-on "find-file-in-project" "3.3")
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@
# built documents.
#
# The short X.Y version.
version = '1.5.0'
version = '1.5.1'
# The full version, including alpha/beta/rc tags.
release = '1.5.0'
release = '1.5.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion elpy-pkg.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(define-package "elpy" "1.5.0"
(define-package "elpy" "1.5.1"
"Emacs Python Development Environment"
'((company "0.8.2")
(find-file-in-project "3.3")
Expand Down
4 changes: 2 additions & 2 deletions elpy.el
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

;; Author: Jorgen Schaefer <contact@jorgenschaefer.de>
;; URL: https://github.com/jorgenschaefer/elpy
;; Version: 1.5.0
;; Version: 1.5.1
;; Keywords: Python, IDE, Languages, Tools
;; Package-Requires: ((company "0.8.2") (find-file-in-project "3.3") (highlight-indentation "0.5.0") (idomenu "0.1") (pyvenv "1.3") (yasnippet "0.8.0"))

Expand Down Expand Up @@ -80,7 +80,7 @@
(require 'elpy-refactor)
(require 'pyvenv)

(defconst elpy-version "1.5.0"
(defconst elpy-version "1.5.1"
"The version of the Elpy lisp code.")

;;;;;;;;;;;;;;;;;;;;;;
Expand Down
2 changes: 1 addition & 1 deletion elpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@
"""

__author__ = "Jorgen Schaefer"
__version__ = "1.5.0"
__version__ = "1.5.1"
__license__ = "GPL"

0 comments on commit d24232e

Please sign in to comment.