-
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: regex matching wrong version substring (#20)
- Loading branch information
1 parent
950bb0a
commit a2a9701
Showing
7 changed files
with
80 additions
and
2 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,27 @@ | ||
# 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.0.10] - ~~SUB-DATE~~ | ||
### Changed | ||
- Fix add fourth file. | ||
|
||
## [0.0.2] - ~~SUB-DATE~~ | ||
### Fixed | ||
- Add third file. | ||
|
||
## [0.0.1] - 2021-01-19 | ||
### Added | ||
- Add first file. | ||
|
||
### Fixed | ||
- Add second file. | ||
|
||
[Unreleased]: https://github.com/adamtabrams/change/compare/0.0.10...HEAD | ||
[0.0.10]: https://github.com/adamtabrams/change/compare/0.0.2...0.0.10 | ||
[0.0.2]: https://github.com/adamtabrams/change/compare/0.0.1...0.0.2 | ||
[0.0.1]: https://github.com/adamtabrams/change/releases/tag/0.0.1 |
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.0.1] - 2021-01-19 | ||
### Added | ||
- Add first file. | ||
|
||
### Fixed | ||
- Add second file. | ||
|
||
[Unreleased]: https://github.com/adamtabrams/change/compare/0.0.1...HEAD | ||
[0.0.1]: https://github.com/adamtabrams/change/releases/tag/0.0.1 |
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,2 @@ | ||
added 0.0.2 to CHANGELOG.md | ||
added 0.0.10 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,23 @@ | ||
#!/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.0.1 | ||
|
||
git add exp-stderr | ||
git commit --quiet -am "fix: add third file" | ||
git tag 0.0.2 | ||
|
||
git add exp-stdout | ||
git commit --quiet -am "Fix add fourth file" | ||
git tag 0.0.10 | ||
|
||
git remote add origin https://github.com/adamtabrams/change.git | ||
|
||
change >act-stdout 2>act-stderr | ||
|
||
rm -rf ./.git |