diff --git a/docs/README.md b/docs/README.md index 561d9487e1..7604a5b028 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,11 +1,11 @@ -[![Github Actions](https://github.com/Woile/commitizen/workflows/Python%20package/badge.svg?style=flat-square)](https://github.com/Woile/commitizen/actions) +[![Github Actions](https://github.com/commitizen-tools/commitizen/workflows/Python%20package/badge.svg?style=flat-square)](https://github.com/commitizen-tools/commitizen/actions) [![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg?style=flat-square)](https://conventionalcommits.org) [![PyPI Package latest release](https://img.shields.io/pypi/v/commitizen.svg?style=flat-square)](https://pypi.org/project/commitizen/) [![Supported versions](https://img.shields.io/pypi/pyversions/commitizen.svg?style=flat-square)](https://pypi.org/project/commitizen/) -[![Codecov](https://img.shields.io/codecov/c/github/Woile/commitizen.svg?style=flat-square)](https://codecov.io/gh/Woile/commitizen) +[![Codecov](https://img.shields.io/codecov/c/github/commitizen-tools/commitizen.svg?style=flat-square)](https://codecov.io/gh/commitizen-tools/commitizen) ![Using commitizen cli](images/demo.gif) @@ -115,4 +115,4 @@ Feel free to create a PR. [semver]: https://semver.org/ [keepchangelog]: https://keepachangelog.com/ [gitscm]: https://git-scm.com/downloads -[travis]: https://img.shields.io/travis/Woile/commitizen.svg?style=flat-square +[travis]: https://img.shields.io/travis/commitizen-tools/commitizen.svg?style=flat-square diff --git a/docs/check.md b/docs/check.md index e43878700f..ab325aafee 100644 --- a/docs/check.md +++ b/docs/check.md @@ -16,8 +16,8 @@ python -m pip install pre-commit ```yaml --- repos: - - repo: https://github.com/Woile/commitizen - rev: v1.16.2 + - repo: https://github.com/commitizen-tools/commitizen + rev: v1.17.0 hooks: - id: commitizen stages: [commit-msg] diff --git a/docs/config.md b/docs/config.md index 88f4850d45..32fa3391d8 100644 --- a/docs/config.md +++ b/docs/config.md @@ -67,8 +67,8 @@ The extra tab before the square brackets (`]`) at the end is required. | -------- | ---- | ------- | ----------- | | `name` | `str` | `"cz_conventional_commits"` | Name of the commiting rules to use | | `version` | `str` | `None` | Current version. Example: "0.1.2" | -| `version_files` | `list` | `[ ]` | Files were the version will be updated. A pattern to match a line, can also be specified, separated by `:` [See more](https://woile.github.io/commitizen/bump#files) | -| `tag_format` | `str` | `None` | Format for the git tag, useful for old projects, that use a convention like `"v1.2.1"`. [See more](https://woile.github.io/commitizen/bump#tag_format) | -| `bump_message` | `str` | `None` | Create custom commit message, useful to skip ci. [See more](https://woile.github.io/commitizen/bump#bump_message) | +| `version_files` | `list` | `[ ]` | Files were the version will be updated. A pattern to match a line, can also be specified, separated by `:` [See more](https://commitizen-tools.github.io/commitizen/bump#files) | +| `tag_format` | `str` | `None` | Format for the git tag, useful for old projects, that use a convention like `"v1.2.1"`. [See more](https://commitizen-tools.github.io/commitizen/bump#tag_format) | +| `bump_message` | `str` | `None` | Create custom commit message, useful to skip ci. [See more](https://commitizen-tools.github.io/commitizen/bump#bump_message) | | `style` | `list` | see above | Style for the prompts (It will merge this value with default style.) [See More (Styling your prompts with your favorite colors)](https://github.com/tmbo/questionary#additional-features) | -| `customize` | `dict` | `None` | **This is only supported when config through `toml`.** Custom rules for committing and bumping. [See more](https://woile.github.io/commitizen/customization/) | +| `customize` | `dict` | `None` | **This is only supported when config through `toml`.** Custom rules for committing and bumping. [See more](https://commitizen-tools.github.io/commitizen/customization/) | diff --git a/docs/customization.md b/docs/customization.md index 09c996d88c..3e0221b396 100644 --- a/docs/customization.md +++ b/docs/customization.md @@ -130,7 +130,7 @@ That's it, your commitizen now supports custom rules, and you can run. cz -n cz_strange bump ``` -[convcomms]: https://github.com/Woile/commitizen/blob/master/commitizen/cz/conventional_commits/conventional_commits.py +[convcomms]: https://github.com/commitizen-tools/commitizen/blob/master/commitizen/cz/conventional_commits/conventional_commits.py ### Raise Customize Exception diff --git a/docs/tutorials/github_actions.md b/docs/tutorials/github_actions.md index b151c9e77a..409428d1bc 100644 --- a/docs/tutorials/github_actions.md +++ b/docs/tutorials/github_actions.md @@ -94,6 +94,6 @@ jobs: ``` Notice that we are calling a bash script in `./scripts/publish`, you should -configure it with your tools (twine, poetry, etc.). Check [commitizen example](https://github.com/Woile/commitizen/blob/master/scripts/publish) +configure it with your tools (twine, poetry, etc.). Check [commitizen example](https://github.com/commitizen-tools/commitizen/blob/master/scripts/publish) Push the changes and that's it. diff --git a/docs/tutorials/gitlab_ci.md b/docs/tutorials/gitlab_ci.md index e2da81d63d..18756d4668 100644 --- a/docs/tutorials/gitlab_ci.md +++ b/docs/tutorials/gitlab_ci.md @@ -10,7 +10,7 @@ For this example, we have a `python/django` application and `Docker` as a contai 2. A developer creates a merge request (MR) against `master` branch 3. When the `MR` is merged into master, the 2 stages of the CI are executed 4. For simplification, we store the software version in a file called `VERSION`. You can use any file that you want as `commitizen` supports it. -5. The commit message executed automatically by the `CI` must include `[skip-ci]` in the message; otherwise, the process will generate a loop. You can define the message structure in [commitizen](https://woile.github.io/commitizen/bump/) as well. +5. The commit message executed automatically by the `CI` must include `[skip-ci]` in the message; otherwise, the process will generate a loop. You can define the message structure in [commitizen](https://commitizen-tools.github.io/commitizen/bump/) as well. #### Gitlab Configuration: diff --git a/docs/tutorials/writing_commits.md b/docs/tutorials/writing_commits.md index 37b83b36b7..c981df004c 100644 --- a/docs/tutorials/writing_commits.md +++ b/docs/tutorials/writing_commits.md @@ -35,5 +35,5 @@ understand what happened. | `fix(commands): bump error when no user provided` | `fix: stuff` | | `feat: add new commit command` | `feat: commit command introduced` | -[customization]: https://woile.github.io/commitizen/customization/ +[customization]: https://commitizen-tools.github.io/commitizen/customization/ [conventional_commits]: https://www.conventionalcommits.org diff --git a/mkdocs.yml b/mkdocs.yml index dfaa6e16d8..46499871bc 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -4,8 +4,8 @@ site_description: commit rules, semantic version, conventional commits theme: name: 'material' -repo_name: Woile/commitizen -repo_url: https://github.com/Woile/commitizen +repo_name: commitizen-tools/commitizen +repo_url: https://github.com/commitizen-tools/commitizen edit_uri: "" nav: diff --git a/pyproject.toml b/pyproject.toml index aa4e141bea..47b9b6c5b3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,7 +35,7 @@ authors = ["Santiago Fraire "] license = "MIT" keywords = ["commitizen", "conventional", "commits", "git"] readme = "docs/README.md" -homepage = "https://github.com/woile/commitizen" +homepage = "https://github.com/commitizen-tools/commitizen" classifiers = [ "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3.6",