Skip to content

Commit f3d0880

Browse files
committed
Release v1.1.1
1 parent 9aa337f commit f3d0880

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
# This file contains all notable changes to the AVC-VersionFileValidator
22

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

85

96
## v1
7+
### v1.1.1
8+
* Add requirements.txt for easier dev env setup.
9+
* Add examples in the examples/ folder. The standard.yml should cover most use cases.
10+
* Do not overwrite requirements.txt if it exists in the triggering repo.
11+
1012
### v1.1.0
1113
* Allow wildcards in the exclusion input arguments. They are evaluated according to Python3's pathlib.Glob() function,
1214
so recursive exclusions (`**/*.version`) are supported. The exclusion value has to be a JSON array now!

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Optionally, add the following after `- name: Validate files` to exclude `invalid
3333
with:
3434
exclude: '["./invalid.version", "./test/corruptVersionFiles/**/*.version"]'
3535
```
36-
The supplied string has to be a valid JSON array!
36+
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)!
3737
For the globbing syntax, see the [pathlib documentation](https://docs.python.org/3.5/library/pathlib.html#pathlib.PurePath.match):
3838

3939
**For more workflow file examples, see the [examples folder](https://github.com/DasSkelett/AVC-VersionFileValidator/tree/master/examples).**

examples/standard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This is a standard workflow to validate all .version files
22
# found in the root directory of the repository and any subdirectories,
33
# whenever something is pushed to any branch in the repository, or to a "foreign" branch active in a pull request.
4-
# It should be enough in most cases.
4+
# It should cover most cases.
55
name: Validate AVC .version files
66
on:
77
push:

0 commit comments

Comments
 (0)