Skip to content

Commit

Permalink
Bump version: 1.26.0 → 1.27.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgenschaefer committed Dec 2, 2018
1 parent 0c74b4a commit 85f3a1c
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.26.0
current_version = 1.27.0
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
@@ -1,7 +1,7 @@
(source gnu)
(source melpa)

(package "elpy" "1.26.0" "Emacs Python Development Environment")
(package "elpy" "1.27.0" "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.26.0'
version = '1.27.0'
# The full version, including alpha/beta/rc tags.
release = '1.26.0'
release = '1.27.0'

# 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.26.0"
(define-package "elpy" "1.27.0"
"Emacs Python Development Environment"
'((company "0.9.2")
(emacs "24.4")
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 <[email protected]>
;; URL: https://github.com/jorgenschaefer/elpy
;; Version: 1.26.0
;; Version: 1.27.0
;; Keywords: Python, IDE, Languages, Tools
;; Package-Requires: ((company "0.9.2") (emacs "24.4") (find-file-in-project "3.3") (highlight-indentation "0.5.0") (pyvenv "1.3") (yasnippet "0.8.0") (s "1.11.0"))

Expand Down Expand Up @@ -53,7 +53,7 @@
(require 'pyvenv)
(require 'find-file-in-project)

(defconst elpy-version "1.26.0"
(defconst elpy-version "1.27.0"
"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.26.0"
__version__ = "1.27.0"
__license__ = "GPL"

0 comments on commit 85f3a1c

Please sign in to comment.