Skip to content

Commit

Permalink
Bump version to 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bmw committed May 12, 2016
1 parent 8e742fa commit c8cf0b4
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion acme/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from setuptools import find_packages


version = '0.6.0'
version = '0.7.0.dev0'

# Please update tox.ini when modifying dependency version requirements
install_requires = [
Expand Down
2 changes: 1 addition & 1 deletion certbot-apache/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from setuptools import find_packages


version = '0.6.0'
version = '0.7.0.dev0'

# Please update tox.ini when modifying dependency version requirements
install_requires = [
Expand Down
2 changes: 1 addition & 1 deletion certbot-compatibility-test/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from setuptools import find_packages


version = '0.6.0'
version = '0.7.0.dev0'

install_requires = [
'certbot=={0}'.format(version),
Expand Down
2 changes: 1 addition & 1 deletion certbot-nginx/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from setuptools import find_packages


version = '0.6.0'
version = '0.7.0.dev0'

# Please update tox.ini when modifying dependency version requirements
install_requires = [
Expand Down
2 changes: 1 addition & 1 deletion certbot/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Certbot client."""

# version number like 1.2.3a0, must have at least 2 parts, like 1.2
__version__ = '0.6.0'
__version__ = '0.7.0.dev0'
2 changes: 1 addition & 1 deletion letsencrypt-apache/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def read_file(filename, encoding='utf8'):
readme = read_file(os.path.join(here, 'README.rst'))


version = '0.6.0'
version = '0.7.0.dev0'


# This package is a simple shim around certbot-apache
Expand Down
2 changes: 1 addition & 1 deletion letsencrypt-auto-source/letsencrypt-auto
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ XDG_DATA_HOME=${XDG_DATA_HOME:-~/.local/share}
VENV_NAME="letsencrypt"
VENV_PATH=${VENV_PATH:-"$XDG_DATA_HOME/$VENV_NAME"}
VENV_BIN="$VENV_PATH/bin"
LE_AUTO_VERSION="0.6.0"
LE_AUTO_VERSION="0.7.0.dev0"
BASENAME=$(basename $0)
USAGE="Usage: $BASENAME [OPTIONS]
A self-updating wrapper script for the Certbot ACME client. When run, updates
Expand Down
2 changes: 1 addition & 1 deletion letsencrypt-nginx/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def read_file(filename, encoding='utf8'):
readme = read_file(os.path.join(here, 'README.rst'))


version = '0.6.0'
version = '0.7.0.dev0'


# This package is a simple shim around certbot-nginx
Expand Down
2 changes: 1 addition & 1 deletion letsencrypt/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def read_file(filename, encoding='utf8'):
install_requires = ['certbot']


version = '0.6.0'
version = '0.7.0.dev0'


setup(
Expand Down
2 changes: 1 addition & 1 deletion letshelp-certbot/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from setuptools import find_packages


version = '0.6.0'
version = '0.7.0.dev0'

install_requires = [
'setuptools', # pkg_resources
Expand Down
2 changes: 1 addition & 1 deletion letshelp-letsencrypt/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def read_file(filename, encoding='utf8'):
readme = read_file(os.path.join(here, 'README.rst'))


version = '0.6.0'
version = '0.7.0.dev0'


# This package is a simple shim around letshelp-certbot
Expand Down

0 comments on commit c8cf0b4

Please sign in to comment.