Release and Version History¶
x.y.z (Backlog)¶
Features and Improvements
Minor Improvements
Bugfixes
Miscellaneous
1.0.2 (2026-04-21)¶
Features and Improvements
Add a bundled Claude Code skill at .claude/skills/git-web-url/ so AI assistants automatically know how to invoke
gwu(or viauvx) when working inside a git repository.
Miscellaneous
Add Python 3.14 to the CI test matrix.
Migrate development tooling to
uv(package management) andmise(task runner).
1.0.1 (2025-12-13)¶
Features and Improvements
Add
relpathsubcommand to print the relative path from the git repository root to a given file or folder.
Breaking Changes
- Refactor CLI to use subcommand structure. The previous
gwucommand is nowgwu url. Before:
gwu /path/to/fileAfter:
gwu url /path/to/file
- Refactor CLI to use subcommand structure. The previous
0.1.4 (2025-12-13)¶
Features and Improvements
- Add
branchparameter toget_web_urlfunction, allowing users to specify which branch to use in the generated URL: CURRENT_BRANCH: use the current git branch (default behavior)DEFAULT_BRANCH: use the default branch (main/master), generates URL without explicit branchAny string: use the specified branch name
- Add
Add
CURRENT_BRANCHandDEFAULT_BRANCHsentinel constants to the public API.Add
--branch(or-b) flag to CLI commands (gwuandgitweburl).
Miscellaneous
Improve documentation with CLI usage examples and Python API usage examples.
0.1.3 (2023-10-03)¶
Bugfixes
Fix a bug that the relative path should not be “.” when the git repo dir when you are already at the git repo dir.
Miscellaneous
Improve code coverage test to 99%.
0.1.2 (2023-10-03)¶
Bugfixes
Fix a bug that cannot detect the git repo dir when you are already at the git repo dir.
Miscellaneous
Add CLI help info.
0.1.1 (2023-10-03)¶
Features and Improvements
First release.
Add support for AWS CodeCommit, BitBucket, BitBucket Enterprise, GitHub, GitHub Enterprise, GitLab, GitLab Enterprise.
- Add the following public API:
git_web_url.api.PlatformEnumgit_web_url.api.ProtocolEnumgit_web_url.api.get_web_url
Add the CLI command
gitweburlorgwu.