Skip to content

Commit 4e32f25

Browse files
Release 1.7.1 (#760)
* Release 1.7.1 * pin "rsa" to a version which supports Python 2.7 modified: setup.py * pin python-jose<3.2.0 because it dropped python 2.7 Co-authored-by: russellballestrini <[email protected]>
1 parent 72eb1b0 commit 4e32f25

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
## Upcoming release
2-
- Fixing AMI lookup Key error on 'Name'
32

3+
## 1.7.1 (2020-08-17)
4+
- Fixing AMI lookup Key error on 'Name'
5+
- hooks: lambda: allow uploading pre-built payloads [GH-#564]
46
- Ensure that base64 lookup codec encodes the bytes object as a string [GH-742]
57
- Use CloudFormation Change Sets for `stacker diff`
8+
- Locked stacks still have requirements [GH-746]
9+
- change diff to use CFN change sets instead of comparing template dicts [GH-744]
10+
- Add YAML environment file support [GH-740]
11+
- fix `stack.set_outputs` not being called by diff if stack did not change [GH-754]
12+
- Fix python 2.7/3.5 dependency issue
13+
- add cf notification arns [GH-756]
614

715
## 1.7.0 (2019-04-07)
816

setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22
from setuptools import setup, find_packages
33

4-
VERSION = "1.7.0"
4+
VERSION = "1.7.1"
55

66
src_dir = os.path.dirname(__file__)
77

@@ -19,6 +19,8 @@
1919
"python-dateutil>=2.0,<3.0",
2020
"MarkupSafe<2.0", # 2.0 dropped python 2.7, 3.5 support - temporary
2121
"more-itertools<6.0.0", # 6.0.0 dropped python 2.7 support - temporary
22+
"rsa==4.5", # 4.6 dropped python 2.7 support - temporary
23+
"python-jose<3.2.0", # 3.2.0 dropped python 2.7 support - temporary
2224
]
2325

2426
setup_requires = ['pytest-runner']

stacker/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
from __future__ import division
33
from __future__ import absolute_import
44

5-
__version__ = "1.7.0"
5+
__version__ = "1.7.1"

0 commit comments

Comments
 (0)