-
Notifications
You must be signed in to change notification settings - Fork 797
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
version heading should use h2 level #317
Comments
I believe it was fixed by conventional-changelog/conventional-changelog#237. Are you on the latest version? |
|
Found duplicate with #208 |
It is obviously not solved. (or the poblem came back) Look at versions @stevemao Can you reopen the issue? |
I just test this package I found really great, but I think the header problem is still present. |
Ok I miss the fact that for the first release you should run |
It still looks a little odd for patch releases: https://github.com/tonai/react-deploy/commit/b44911e45ca9861df4cc191aa116e5381e8c8de0 It is ok for minor release: https://github.com/tonai/react-deploy/commit/2cdadf4acff8940bc648e6570fe8be32fdbafa79 Is it something that is wanted ? |
For the example below, the ### 0.1.2
### Bug Fixes
* some fixes. |
Hi ! Is it fixed ? |
changes that fix this problem is not included in for now, i use a postchangelog script:
|
Any updates about that ? |
Spent 2 hours fighting backslash "\" problem! It's not working if directly included in module.exports = {
scripts: {
postchangelog: "sed -r -e 's/^#{1,3} \[/## [/' -i CHANGELOG.md",
},
}; Because there are 2 problems arise:
I put this shell-command line into external shell-script file - this exterminated both problems: #!/bin/bash
# Workaround for buggy behavior
# Change '### [' to '## ['
DIR="./"
sed -r -e 's/^#{1,3} \[/## [/' -i $DIR/CHANGELOG.md So, now it looks like: module.exports = {
scripts: {
postchangelog: "./tools/for_standard-version.sh",
},
}; |
use |
@NateScarlet P. S. As for me - trying "native" Windows-based development is a bad idea in general. There are a lot of problems even in Linux-based development, so multiplying problems with Windows is not helping at all :) |
I'm not sure why does conventional changelog template need |
Small addition to @amokmen advise. There is a problem with that script and MacOS
|
What about this? |
The text was updated successfully, but these errors were encountered: