Releases: codersrank-org/repo_info_extractor
Releases · codersrank-org/repo_info_extractor
v2.0.2
v2.0.1
v2.0.0
Breaking changes:
- ./repo_info_extractor --repo_path ./path_to_repo won't work anymore. Use this: ./repo_info_extractor local --repo_path ./path_to_repo
Features:
- Add BitBucket support. Example usage:
./repo_info_extractor bitbucket --username="username" --password=password --visibility=private [email protected] --skip_libraries --skip_update
- Introduce commands concept. There are global and command level arguments
- Add version command
- Add --skip_update global argument
- Add --skip_libraries global argument
- Add Blazor language support
v2.0.0-rc2
Bugfix:
- Use V2 in go mod
v2.0.0-rc.1
Breaking changes:
./repo_info_extractor --repo_path ./path_to_repo
won't work anymore. Use this:./repo_info_extractor local --repo_path ./path_to_repo
Features:
- Add BitBucket support. Example usage:
./repo_info_extractor bitbucket --username="username" --password=password --visibility=private [email protected] --skip_libraries --skip_update
- Introduce commands concept. There are global and command level arguments
- Add
version
command - Add
--skip_update
global argument - Add
--skip_libraries
global argument - Add Blazor language support
v1.2.1
Bug fixes:
- Don't overwrite the repo name with an empty string if
--repo_name
is not provided - Improve git executable detection.
where git
wasn't a good solution, because it returned with multiple lines and it is a shell command.
Shell commands are not available in Go exec. Use LookPath which is equivalent of "which git" issue: #176