Skip to content

Commit

Permalink
Remove smart union from Generic (#95)
Browse files Browse the repository at this point in the history
* remove smart_union on generic

* update cloudformation action

* update cloudformation action

* update makefile

* update requirements

* update tests

* update version and changelog

* update changelog and tests
  • Loading branch information
oscarbc96 authored Apr 1, 2022
1 parent 430c276 commit 4fa1d9e
Show file tree
Hide file tree
Showing 7 changed files with 179 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Change Log
All notable changes to this project will be documented in this file.

## 0.18.0 - [2022-04-01]
### Fixes
- Removes `smart_union` flag from Generic. See [PR #95](https://github.com/Skyscanner/pycfmodel/pull/95)

## 0.17.1 - [2022-03-02]
### Additions
- Add `assume_role_statement_conditions` property for `IAMRole` to include statements on `AssumeRolePolicyDocuments`.
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ coverage:
test: lint unit

freeze:
CUSTOM_COMPILE_COMMAND="make freeze" pip-compile --no-index --output-file requirements.txt setup.py
CUSTOM_COMPILE_COMMAND="make freeze" pip-compile --no-emit-index-url --no-annotate --output-file requirements.txt setup.py

freeze-upgrade:
CUSTOM_COMPILE_COMMAND="make freeze-upgrade" pip-compile --no-index --upgrade --output-file requirements.txt setup.py
CUSTOM_COMPILE_COMMAND="make freeze" pip-compile --no-emit-index-url --upgrade --no-annotate --output-file requirements.txt setup.py

.PHONY: install install-dev install-docs format isort-format black-format lint isort-lint black-lint flake8-lint unit coverage test freeze freeze-upgrade
Loading

0 comments on commit 4fa1d9e

Please sign in to comment.