Skip to content

Commit

Permalink
Prepare v1.1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
johnstevenson committed Nov 7, 2019
1 parent d296639 commit 50dab82
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

[*]
indent_size = 4
indent_style = space
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
18 changes: 18 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@

# Auto-detect text files, ensure they use LF.
* text=auto eol=lf

# These files are always considered text and should use LF.
# See core.whitespace @ https://git-scm.com/docs/git-config for whitespace flags.
*.php text eol=lf whitespace=blank-at-eol,blank-at-eof,space-before-tab,tab-in-indent,tabwidth=4 diff=php
*.json text eol=lf whitespace=blank-at-eol,blank-at-eof,space-before-tab,tab-in-indent,tabwidth=4

# Ignore these files in GitHub dists and `git archive` actions.
/.editorconfig export-ignore
/.gitattributes export-ignore
/.github export-ignore
/.gitignore export-ignore
/.travis.yml export-ignore
/appveyor.yml export-ignore
/phpunit.xml.dist export-ignore
/tests export-ignore
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## [Unreleased]

## [1.1.1] - 2019-11-07
* Fixed: platform inconsistencies when escaping unexpected `false` or `null` values.

## [1.1.0] - 2018-08-14
* Added: `escapeCommand` method, taking an array of arguments that includes the executable.
* Added: optional `module` argument to improve edge-case escaping for the executable.
Expand All @@ -9,6 +12,7 @@
## [1.0.0] - 2016-08-04
* Initial release

[Unreleased]: https://github.com/johnstevenson/winbox-args/compare/v1.1.0...HEAD
[Unreleased]: https://github.com/johnstevenson/winbox-args/compare/v1.1.1...HEAD
[1.1.1]: https://github.com/johnstevenson/winbox-args/compare/v1.1.0...v1.1.1
[1.1.0]: https://github.com/johnstevenson/winbox-args/compare/v1.0.0...v1.1.0
[1.0.0]: https://github.com/johnstevenson/winbox-args/compare/a6a5783f708a...v1.0.0

0 comments on commit 50dab82

Please sign in to comment.