Skip to content

Commit

Permalink
Add wildcard resource rule (#126)
Browse files Browse the repository at this point in the history
* update requirements

* fix old parameter in Makefile

* add wilcard resource rule

* add wilcard resource rule tests

* add wildcard_resource_rule to init

* fix formatg

* add wil dcard resource rule test templates

* fix tests

* update tests

* update docs

* update changelog
  • Loading branch information
oscarbc96 committed Oct 1, 2020
1 parent 14e56b6 commit 5d64c1a
Show file tree
Hide file tree
Showing 17 changed files with 1,792 additions and 13 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog
All notable changes to this project will be documented in this file.

## [0.20.0] - 2020-09-30
### Improvements
- Add `WildcardResourceRule` rule

## [0.19.2] - 2020-09-16
### Improvements
- Add `regex:ignorecase` filter function
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ 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 --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-upgrade" pip-compile --no-emit-index-url --upgrade --output-file requirements.txt setup.py

lambda.zip: $(SOURCES) Makefile requirements.txt
if [ -f lambda.zip ]; then rm lambda.zip; fi
Expand Down
2 changes: 1 addition & 1 deletion cfripper/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VERSION = (0, 19, 2)
VERSION = (0, 20, 0)

__version__ = ".".join(map(str, VERSION))

0 comments on commit 5d64c1a

Please sign in to comment.