-
-
Notifications
You must be signed in to change notification settings - Fork 301
Command changelog #179
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
Merged
Merged
Command changelog #179
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
d1cac30
feat(changelog): changelog tree generation from markdown
woile 9326693
feat(cz/base): add default process_commit for processing commit message
Lee-W 0c3b666
feat(cz/conventinal_commits): add changelog_map, changelog_pattern an...
Lee-W cda6be4
feat(commands/changelog): generate changelog_tree from all past commits
Lee-W dee8285
feat(changelog): generate changelog based on git log
Lee-W b5eb128
style(all): blackify
Lee-W 0878114
refactor(commands/changelog): use jinja2 template instead of string c...
Lee-W 4982fae
fix(cli): add changelog arguments
Lee-W 2cfd9de
feat(commands/changlog): add --start-rev argument to `cz changelog`
Lee-W 3df0a7a
style(cli): fix flake8 issue
Lee-W ace33cc
refactor(commands/changelog): remove redundant if statement
Lee-W a928525
refactor(tests/utils): move create_file_and_commit to tests/utils
Lee-W 5f9cf46
feat(commands/changelog): exit when there is no commit exists
Lee-W 3a80c56
fix(commands/changelog): remove --skip-merge argument
Lee-W 2a2a29e
fix(commitizen/cz): set changelog_map, changelog_pattern to none as d...
Lee-W 0b0676d
fix(changelog_template): fix list format
Lee-W 2b15a1b
test(commands/changelog): add test case for changelog command
Lee-W a032fa4
refactor(templates): move changelog_template from cz to templates
Lee-W 384018d
refactor(cli): reorder commands
Lee-W 5ae9058
docs(README): add changelog command
Lee-W 1ece991
refactor(templates): remove unneeded __init__ file
Lee-W 5b9c564
style(tests/commands/changelog): blackify
Lee-W 11e24d3
refactor(templates): rename as "keep_a_changelog_template.j2"
Lee-W 2becf57
feat(commands/changelog): make changelog_file an option in config
Lee-W 81b27c5
docs(config): add changlog_file a config option
Lee-W 78b321e
fix(cz/conventional_commits): fix schema_pattern break due to rebase
Lee-W 5bf5542
style: reformat
Lee-W 65d8268
refactor(changelog): rename category to change_type to fit 'keep a ch...
woile e0a1b49
refactor(changelog): use functions from changelog.py
woile 84471b4
feat(changelog): add incremental flag
woile 7cfb4e5
feat(changelog): add support for any commit rule system
woile 9b40799
docs(changelog): update information about using changelog command
woile 6940241
docs(bump): add information about changelog
woile 5fec1d4
ci(bumpversion): generate changelog along with the version
woile aca2fe9
fix(changelog): check get_metadata for existing changelog file
woile 9ed948a
Merge pull request #163 from commitizen-tools/command-changelog-wip
woile File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
style: reformat
- Loading branch information
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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,11 +1,9 @@ | ||
import os | ||
|
||
|
||
import pytest | ||
|
||
from commitizen import changelog | ||
|
||
|
||
COMMIT_LOG = [ | ||
"bump: version 1.5.0 → 1.5.1", | ||
"", | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.