Skip to content

Commit

Permalink
Bump version: 1.31.0 → 1.32.0
Browse files Browse the repository at this point in the history
  • Loading branch information
galaunay committed Nov 14, 2019
1 parent 65170d2 commit d54e78e
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.31.0
current_version = 1.32.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.31.0" "Emacs Python Development Environment")
(package "elpy" "1.32.0" "Emacs Python Development Environment")

(depends-on "company" "0.9.10")
(depends-on "highlight-indentation" "0.7.0")
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.31.0'
version = '1.32.0'
# The full version, including alpha/beta/rc tags.
release = '1.31.0'
release = '1.32.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.31.0"
(define-package "elpy" "1.32.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 <contact@jorgenschaefer.de>, Gaby Launay <gaby.launay@protonmail.com>
;; URL: https://github.com/jorgenschaefer/elpy
;; Version: 1.31.0
;; Version: 1.32.0
;; Keywords: Python, IDE, Languages, Tools
;; Package-Requires: ((company "0.9.10") (emacs "24.4") (highlight-indentation "0.7.0") (pyvenv "1.20") (yasnippet "0.13.0") (s "1.12.0"))

Expand Down Expand Up @@ -53,7 +53,7 @@
(require 'elpy-rpc)
(require 'pyvenv)

(defconst elpy-version "1.31.0"
(defconst elpy-version "1.32.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.31.0"
__version__ = "1.32.0"
__license__ = "GPL"

0 comments on commit d54e78e

Please sign in to comment.