Skip to content

Commit

Permalink
Bump version: 1.29.1 → 1.30.0
Browse files Browse the repository at this point in the history
  • Loading branch information
galaunay committed May 21, 2019
1 parent 7b7ee0a commit 1f412a2
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.29.1
current_version = 1.30.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.29.1" "Emacs Python Development Environment")
(package "elpy" "1.30.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.29.1'
version = '1.30.0'
# The full version, including alpha/beta/rc tags.
release = '1.29.1'
release = '1.30.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.29.1"
(define-package "elpy" "1.30.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>
;; URL: https://github.com/jorgenschaefer/elpy
;; Version: 1.29.1
;; Version: 1.30.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.12.0"))

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

(defconst elpy-version "1.29.1"
(defconst elpy-version "1.30.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.29.1"
__version__ = "1.30.0"
__license__ = "GPL"

0 comments on commit 1f412a2

Please sign in to comment.