diff --git a/Makefile b/Makefile index 4b80200..b77660c 100644 --- a/Makefile +++ b/Makefile @@ -26,7 +26,7 @@ release: @echo "\nContinuing in 10 seconds. Press to abort\n" && sleep 10 @git log --pretty=format:"%C(yellow)%h%Creset %s%Cgreen%d" --reverse -20 @echo "\nReleasing v$(VERSION) in 10 seconds. Press to abort\n" && sleep 10 - git commit -a -m 'v$(VERSION)' && git tag -a v$(VERSION) -m 'v$(VERSION)' + git commit --no-verify -a -m 'v$(VERSION)' && git tag -a v$(VERSION) -m 'v$(VERSION)' git push --follow-tags templates: diff --git a/README.md b/README.md index 3ceed7d..4554ddb 100644 --- a/README.md +++ b/README.md @@ -763,6 +763,10 @@ $ make test Here described only breaking and the most important changes. The full changelog and documentation for all released versions could be found in nicely formatted [commit history](https://github.com/frictionlessdata/goodtables-py/commits/master). +##### v2.5 + +- Added `check.check_headers_hook` to support headers check for body-contexted checks (see https://github.com/frictionlessdata/goodtables-py/tree/v3 for native support) + ##### v2.4 - Added integrity checks for data packages. If `resource.bytes` or `resource.hash` (sha256) is provided it will be verified against actual values diff --git a/goodtables/VERSION b/goodtables/VERSION index 4863400..437459c 100644 --- a/goodtables/VERSION +++ b/goodtables/VERSION @@ -1 +1 @@ -2.4.16 +2.5.0