-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: only add punctuation when not already present
- Loading branch information
1 parent
1d2f045
commit 3d6ea23
Showing
9 changed files
with
90 additions
and
3 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
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,32 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## [0.2.1] - ~~SUB-DATE~~ | ||
### Fixed | ||
- Add fifth file. | ||
|
||
## [0.2.0] - ~~SUB-DATE~~ | ||
### Added | ||
- Add fourth file!! | ||
|
||
## [0.1.1] - ~~SUB-DATE~~ | ||
### Fixed | ||
- Add third file. | ||
|
||
## [0.1.0] - 2021-01-19 | ||
### Added | ||
- Add first file. | ||
|
||
### Fixed | ||
- Add second file. | ||
|
||
[Unreleased]: https://github.com/adamtabrams/change/compare/0.2.1...HEAD | ||
[0.2.1]: https://github.com/adamtabrams/change/compare/0.2.0...0.2.1 | ||
[0.2.0]: https://github.com/adamtabrams/change/compare/0.1.1...0.2.0 | ||
[0.1.1]: https://github.com/adamtabrams/change/compare/0.1.0...0.1.1 | ||
[0.1.0]: https://github.com/adamtabrams/change/releases/tag/0.1.0 |
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,17 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## [0.1.0] - 2021-01-19 | ||
### Added | ||
- Add first file. | ||
|
||
### Fixed | ||
- Add second file. | ||
|
||
[Unreleased]: https://github.com/adamtabrams/change/compare/0.1.0...HEAD | ||
[0.1.0]: https://github.com/adamtabrams/change/releases/tag/0.1.0 |
Empty file.
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,3 @@ | ||
added 0.1.1 to CHANGELOG.md | ||
added 0.2.0 to CHANGELOG.md | ||
added 0.2.1 to CHANGELOG.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/sh | ||
|
||
. ../../.test-resources.sh | ||
|
||
compare_stdout | ||
compare_stderr | ||
|
||
gen_changelog_exp | ||
compare_changelog |
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,26 @@ | ||
#!/bin/sh | ||
|
||
git init --quiet | ||
|
||
git add run-test | ||
git commit --quiet -am "feat: add first file" | ||
git add results | ||
git commit --quiet -am "fix: add second file" | ||
git tag 0.1.0 | ||
|
||
git add exp-stderr | ||
git commit --quiet -am "fix: add third file." | ||
git tag 0.1.1 | ||
|
||
git add exp-stdout | ||
git commit --quiet -am "feat: add fourth file!!" | ||
git tag 0.2.0 | ||
|
||
git add CHANGELOG.md | ||
git commit --quiet -am "fix: add fifth file" | ||
|
||
git remote add origin https://github.com/adamtabrams/change.git | ||
|
||
change >act-stdout 2>act-stderr | ||
|
||
rm -rf ./.git |
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