Including commit messages from dependent libraries. #293
Locked
CaffeinatedCodeMonkey
started this conversation in
Ideas
Replies: 1 comment
-
This implies breaking down |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Note: This is based on the assumption that #278 has been merged and dependent libraries can now cause bumps in the targeted project.
Commit messages from dependent libraries are not included in the targeted project's change logs when
--use-deps
is used. This is because the change logs are generated based on commits affecting the targeted project's directory. Unfortunately, thestandard-version
library doesn't support a means of including commits from more than one directory.Implementation Idea
In the event that including those messages is in demand, then one possible avenue of is to make new commits to some file (what file would have to be determined) in the targeted project. There should likely be a commit for each level of version imposed by the dependencies. Each of those commits could include the commit messages that correspond to the particular increment level (patch, minor, or major).
Beta Was this translation helpful? Give feedback.
All reactions