Skip to content

Commit

Permalink
Bump version: 1.33.0 → 1.34.0
Browse files Browse the repository at this point in the history
  • Loading branch information
galaunay committed May 27, 2020
1 parent df8bd7a commit 755f56f
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 9 deletions.
3 changes: 1 addition & 2 deletions .bumpversion.cfg
@@ -1,7 +1,6 @@
[bumpversion]
current_version = 1.33.0
current_version = 1.34.0
files = elpy.el elpy/__init__.py Cask elpy-pkg.el docs/conf.py
commit = True
tag = True
tag_name = {new_version}

2 changes: 1 addition & 1 deletion Cask
@@ -1,7 +1,7 @@
(source gnu)
(source melpa)

(package "elpy" "1.33.0" "Emacs Python Development Environment")
(package "elpy" "1.34.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
Expand Up @@ -51,9 +51,9 @@
# built documents.
#
# The short X.Y version.
version = '1.33.0'
version = '1.34.0'
# The full version, including alpha/beta/rc tags.
release = '1.33.0'
release = '1.34.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
@@ -1,4 +1,4 @@
(define-package "elpy" "1.33.0"
(define-package "elpy" "1.34.0"
"Emacs Python Development Environment"
'((company "0.9.2")
(emacs "24.4")
Expand Down
4 changes: 2 additions & 2 deletions elpy.el
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.33.0
;; Version: 1.34.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.33.0"
(defconst elpy-version "1.34.0"
"The version of the Elpy Lisp code.")

;;;;;;;;;;;;;;;;;;;;;;
Expand Down
2 changes: 1 addition & 1 deletion elpy/__init__.py
Expand Up @@ -37,5 +37,5 @@
"""

__author__ = "Jorgen Schaefer"
__version__ = "1.33.0"
__version__ = "1.34.0"
__license__ = "GPL"

0 comments on commit 755f56f

Please sign in to comment.