Skip to content

Commit dfa4731

Browse files
committed
Bump version: 0.7.1 → 0.8.0
1 parent fb952e2 commit dfa4731

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

aws_lambda/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# flake8: noqa
33
__author__ = 'Nick Ficano'
44
__email__ = 'nficano@gmail.com'
5-
__version__ = '0.7.1'
5+
__version__ = '0.8.0'
66

77
from .aws_lambda import deploy, invoke, init, build, cleanup_old_versions
88

setup.cfg

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[bumpversion]
22
commit = True
33
tag = True
4-
current_version = 0.7.1
4+
current_version = 0.8.0
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
6-
serialize =
7-
{major}.{minor}.{patch}
6+
serialize =
7+
{major}.{minor}.{patch}
88

99
[bumpversion:file:setup.py]
1010

@@ -15,3 +15,4 @@ universal = 1
1515

1616
[flake8]
1717
exclude = docs
18+

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
setup(
2323
name='python-lambda',
24-
version='0.7.1',
24+
version='0.8.0',
2525
description="The bare minimum for a Python app running on Amazon Lambda.",
2626
long_description=readme + '\n\n' + history,
2727
author="Nick Ficano",

0 commit comments

Comments
 (0)