-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from Sage/issue_16-prevent_parsing_errors_caus…
…ed_by_leading_bom_character Fixes #16: Prevent parsing errors caused by leading BOM character
- Loading branch information
Showing
6 changed files
with
53 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/) | ||
and this project adheres to [Semantic Versioning](http://semver.org/). | ||
|
||
## [Unreleased] | ||
### Added | ||
|
||
### Changed | ||
|
||
### Removed | ||
|
||
|
||
## [0.2.1] - 2017-06-01 | ||
### Added | ||
- CHANGELOG.md | ||
|
||
### Changed | ||
- Fix handling of UTF-8-encoded files using byte order mark | ||
|
||
|
||
## [0.2.0] - 2017-05-10 | ||
### Added | ||
- Add file configuration to rake task | ||
- Add YAML check service, including rake task | ||
- Add ci_task helper methods | ||
- Add more documentation and improve wording | ||
|
||
### Changed | ||
- Enable RSpec's verify_partial_doubles and disable_monkey_patching | ||
- Change License to Apache-2.0 | ||
- Move CI helper methods to separate file | ||
- Make printed file paths relative | ||
- Disable output while running specs | ||
- Update section Usage in README | ||
- Make "rake ci" the default rake task | ||
|
||
### Removed | ||
- Remove flay | ||
- Remove cane | ||
- Remove Ruby refinements | ||
|
||
|
||
## [0.1.0] - 2017-04-07 | ||
### Added | ||
- Minimal initial version of "YAML Normalizer", fmi see README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,5 @@ | |
|
||
module YamlNormalizer | ||
# The current Yaml Normalizer version | ||
VERSION = '0.2.0' | ||
VERSION = '0.2.1' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
--- | ||
--- | ||
this: is | ||
a: | ||
- valid | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
--- | ||
--- | ||
a: | ||
- valid | ||
- yaml | ||
|