Skip to content

Commit

Permalink
Release v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
DasSkelett committed Dec 18, 2019
1 parent 9aa337f commit f3d0880
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
# This file contains all notable changes to the AVC-VersionFileValidator

## master (not included in any release yet)
* Do not overwrite requirements.txt if it exists in the triggering repo.
* Add examples in the examples/ folder. The standard.yml should cover most use cases.
* Add requirements.txt for easier dev env setup.


## v1
### v1.1.1
* Add requirements.txt for easier dev env setup.
* Add examples in the examples/ folder. The standard.yml should cover most use cases.
* Do not overwrite requirements.txt if it exists in the triggering repo.

### v1.1.0
* Allow wildcards in the exclusion input arguments. They are evaluated according to Python3's pathlib.Glob() function,
so recursive exclusions (`**/*.version`) are supported. The exclusion value has to be a JSON array now!
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Optionally, add the following after `- name: Validate files` to exclude `invalid
with:
exclude: '["./invalid.version", "./test/corruptVersionFiles/**/*.version"]'
```
The supplied string has to be a valid JSON array!
The supplied string has to be a valid JSON array (except it's a single file/globbing statement, then it can be a simple string)!
For the globbing syntax, see the [pathlib documentation](https://docs.python.org/3.5/library/pathlib.html#pathlib.PurePath.match):

**For more workflow file examples, see the [examples folder](https://github.com/DasSkelett/AVC-VersionFileValidator/tree/master/examples).**
Expand Down
2 changes: 1 addition & 1 deletion examples/standard.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This is a standard workflow to validate all .version files
# found in the root directory of the repository and any subdirectories,
# whenever something is pushed to any branch in the repository, or to a "foreign" branch active in a pull request.
# It should be enough in most cases.
# It should cover most cases.
name: Validate AVC .version files
on:
push:
Expand Down

0 comments on commit f3d0880

Please sign in to comment.