Skip to content

Releases: codersrank-org/repo_info_extractor

v2.0.2

22 Jul 12:03
3cf47b3
Compare
Choose a tag to compare

Features:

  • Add Julia language support by @kasztp

v2.0.1

09 Jul 10:48
Compare
Choose a tag to compare

Features:

  • Add time limit support. Only available on headless mode.

v2.0.0

09 Jul 09:05
Compare
Choose a tag to compare

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

09 Jul 08:50
Compare
Choose a tag to compare
v2.0.0-rc2 Pre-release
Pre-release

Bugfix:

  • Use V2 in go mod

v2.0.0-rc.1

25 Jun 19:34
Compare
Choose a tag to compare
v2.0.0-rc.1 Pre-release
Pre-release

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

21 Apr 18:43
Compare
Choose a tag to compare

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

v1.2.0

16 Apr 20:29
Compare
Choose a tag to compare

Features:

  • Make it possible to set repo name using --repo_name #173

v1.1.0

11 Apr 19:33
Compare
Choose a tag to compare

Features:

  • More descriptive error messages
  • Add progress bar

v1.0.0

10 Apr 17:34
Compare
Choose a tag to compare

New feature:

  • Auto-update

v0.9.6

10 Apr 16:03
Compare
Choose a tag to compare

Bugfix:

  • Fix origin parsing in case of this format: ssh://user@host:port/group/repoName.git. Find and fixed by: @itnelo