├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml ├── pull-request-template.md ├── release.yml └── workflows │ ├── codeql-analysis.yml │ ├── coverall.yml │ └── testing.yml ├── .gitignore ├── .golangci.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── base.go ├── docs ├── assets │ ├── bell-icon.png │ ├── examples │ │ ├── screen-cobra-alias-version_-h.png │ │ ├── screen-cobra-version.png │ │ ├── screen-cobra-version_-h.png │ │ ├── screen-custom-fields-.png │ │ ├── screen-custom-formatting-.png │ │ ├── screen-custom-layout--env-style.png │ │ ├── screen-custom-layout-.png │ │ ├── screen-custom-renderer-.png │ │ ├── screen-plain-.png │ │ ├── screen-printer--ojson.png │ │ ├── screen-printer--oshort.png │ │ ├── screen-printer--oyaml.png │ │ ├── screen-printer-.png │ │ ├── screen-printer-post-hook-.png │ │ ├── screen-upgrade-notice-cobra-version.png │ │ ├── screen-upgrade-notice-cobra-version_-ojson.png │ │ ├── screen-upgrade-notice-custom-version.png │ │ ├── screen-upgrade-notice-standalone-.png │ │ └── screen-upgrade-notice-sub-cmd-version_check.png │ ├── hp-preview.gif │ ├── logo.png │ ├── preview.gif │ └── preview.png ├── community │ └── testing.md ├── customization │ ├── extra-fields.md │ ├── index.md │ ├── omit-unset.md │ ├── pretty │ │ ├── custom-renderer.md │ │ ├── format.md │ │ └── layout.md │ └── upgrade-notice │ │ ├── check-sub-command.md │ │ ├── custom-renderer.md │ │ ├── index.md │ │ └── layout.md ├── examples.md ├── get-started │ ├── build-ldflags │ │ ├── goreleaser.md │ │ ├── index.md │ │ ├── magefile.md │ │ └── makefile.md │ ├── index.md │ ├── upgrade-notice.md │ └── usage │ │ ├── cobra.md │ │ ├── index.md │ │ ├── plain.md │ │ ├── printer.md │ │ └── urfave-cli.md ├── index.md ├── mkdocs-theme │ ├── index.html │ ├── partials │ │ └── footer.html │ └── stylesheets │ │ └── extra.css ├── quick-start.md ├── robots.txt ├── static │ ├── css │ │ ├── main.29ec7f3d.css │ │ └── main.29ec7f3d.css.map │ ├── js │ │ ├── 787.82eec9a0.chunk.js │ │ ├── 787.82eec9a0.chunk.js.map │ │ ├── main.247dde1c.js │ │ ├── main.247dde1c.js.LICENSE.txt │ │ └── main.247dde1c.js.map │ └── media │ │ ├── boxes-line.cfad6c4c3799792fbd1d3cb8a478d9aa.svg │ │ ├── bubble-aka-dna-line.7c7451949c569c715377cd53a958e33f.svg │ │ ├── chat-icon.5caf40d7ab324462b63ed700f5b74626.svg │ │ ├── compass-icon.f60638433407d80fc169cc8b604e4013.svg │ │ ├── customize-icon.289d3c03e7d89c5782d18cc176dff56a.svg │ │ ├── github-icon.718ba95796fa383edd85c429d3a75cdc.svg │ │ ├── linkedin-icon.5cd8696294f290174d81259ec287c192.svg │ │ ├── modules-icon.2b1fb9e2d2fee76394391fa56881c012.svg │ │ ├── play-icon.aeddd58b625b0405a407ce0fbe5ac661.svg │ │ ├── shield-check-line.535ff0d2fdf4b90cc1d44ae59f6d6dd6.svg │ │ └── twitter-icon.80fb3c50f09561684a5037fae8f2f4b2.svg └── troubleshooting.md ├── examples ├── README.md ├── cobra-alias │ └── main.go ├── cobra │ └── main.go ├── custom-fields │ └── main.go ├── custom-formatting │ └── main.go ├── custom-layout │ └── main.go ├── custom-renderer │ └── main.go ├── go.mod ├── go.sum ├── plain │ └── main.go ├── printer-post-hook │ └── main.go ├── printer │ └── main.go ├── style.yaml ├── upgrade-notice-cobra │ └── main.go ├── upgrade-notice-custom │ └── main.go ├── upgrade-notice-global │ └── main.go ├── upgrade-notice-standalone │ └── main.go └── upgrade-notice-sub-cmd │ └── main.go ├── extension ├── cobra.go ├── cobra_test.go └── opts.go ├── go.mod ├── go.sum ├── magefiles ├── doc.go ├── go.mod ├── go.sum ├── hack │ ├── note.sh │ ├── preview.sh │ ├── preview_window.scpt │ └── resize_window.scpt ├── magefile.go ├── preview-stub │ └── main.go └── target │ ├── dead-link.go │ ├── format-docs.go │ ├── gallery.go │ ├── pretty.go │ ├── preview.go │ └── sync-homepage.go ├── mkdocs.yml ├── printer ├── export_test.go ├── format.go ├── helper_test.go ├── json.go ├── json_test.go ├── opts.go ├── pretty.go ├── pretty_test.go ├── printer.go ├── printer_test.go ├── short.go ├── short_test.go ├── testdata │ ├── TestPrettyPrinter │ │ ├── Built-in_Info_fields.golden.txt │ │ ├── Custom_Info_fields.golden.txt │ │ └── Nil_Info.golden.txt │ ├── TestPrettyPrinterOptions │ │ ├── Custom_formatting.golden.txt │ │ ├── Custom_layout.golden.txt │ │ ├── Custom_post_render_hook.golden.txt │ │ ├── Custom_renderer.golden.txt │ │ └── Custom_style.golden.txt │ ├── TestPrinter │ │ ├── Print_in_JSON_format.golden.txt │ │ ├── Print_in_JSON_format_when_long_flag_is_used.golden.txt │ │ ├── Print_in_Pretty_format.golden.txt │ │ ├── Print_in_YAML_format.golden.txt │ │ └── Print_in_default_format.golden.txt │ ├── TestPrinterPrint.golden.txt │ ├── TestPrinterStyleFileOptions │ │ ├── Print_custom_layout.golden.txt │ │ ├── Print_default_layout.golden.txt │ │ ├── customStyle.json │ │ ├── customStyle.yaml │ │ ├── invalidStyle.json │ │ └── invalidStyle.yaml │ └── TestPrinterStyleFromEnvOptionsUseDefaults.golden.txt ├── yaml.go └── yaml_test.go ├── requirements.txt ├── runtime.txt ├── style ├── config.go ├── format.go ├── go-tpl-funcs.go ├── helpers.go ├── layout.go ├── render.go └── termenvx │ ├── colors.go │ ├── profile.go │ ├── style.go │ └── termenv-tpl-funcs.go ├── term └── terminal.go ├── tests ├── e2e │ ├── e2e_test.go │ ├── helpers_test.go │ └── testdata │ │ ├── TestExamplesColorOutput │ │ ├── Should_return_cobra_help_menu.golden.txt │ │ ├── Should_return_cobra_version_help.golden.txt │ │ ├── Should_return_cobra_version_help_with_v_alias.golden.txt │ │ ├── Should_return_cobra_version_in_JSON_format.golden.txt │ │ ├── Should_return_cobra_version_in_YAML_format.golden.txt │ │ ├── Should_return_cobra_version_in_default_Pretty_format.golden.txt │ │ ├── Should_return_cobra_version_in_short_format.golden.txt │ │ ├── Should_return_cobra_version_in_short_format_with_full_flag_name.golden.txt │ │ ├── Should_return_cobra_version_when_alias_v_is_used.golden.txt │ │ ├── Should_return_cobra_version_when_alias_ver_is_used.golden.txt │ │ ├── Should_return_default_printer_version.golden.txt │ │ ├── Should_return_plain_version.golden.txt │ │ ├── Should_return_upgrade_notice_from_standalone_command.golden.txt │ │ ├── Should_return_version_with_custom_Pretty_formatting.golden.txt │ │ ├── Should_return_version_with_custom_Pretty_layout.golden.txt │ │ ├── Should_return_version_with_custom_Pretty_renderer.golden.txt │ │ ├── Should_return_version_with_custom_fields_in_JSON_format.golden.txt │ │ ├── Should_return_version_with_custom_fields_in_YAML_format.golden.txt │ │ ├── Should_return_version_with_custom_fields_in_default_Pretty_format.golden.txt │ │ ├── Should_return_version_with_custom_upgrade_notice_in_JSON_format.golden.txt │ │ ├── Should_return_version_with_custom_upgrade_notice_in_YAML_format.golden.txt │ │ ├── Should_return_version_with_custom_upgrade_notice_in_default_Pretty_format.golden.txt │ │ ├── Should_return_version_with_custom_upgrade_notice_in_short_format.golden.txt │ │ ├── Should_return_version_with_executed_post_hook_in_JSON_format.golden.txt │ │ ├── Should_return_version_with_executed_post_hook_in_YAML_format.golden.txt │ │ ├── Should_return_version_with_executed_post_hook_in_default_Pretty_format.golden.txt │ │ ├── Should_return_version_with_upgrade_notice_in_JSON_format.golden.txt │ │ ├── Should_return_version_with_upgrade_notice_in_YAML_format.golden.txt │ │ ├── Should_return_version_with_upgrade_notice_in_default_Pretty_format.golden.txt │ │ └── Should_return_version_with_upgrade_notice_in_short_format.golden.txt │ │ ├── TestExamplesNoColorOutput │ │ ├── Should_return_cobra_help_menu.golden.txt │ │ ├── Should_return_cobra_version_help.golden.txt │ │ ├── Should_return_cobra_version_help_with_v_alias.golden.txt │ │ ├── Should_return_cobra_version_in_JSON_format.golden.txt │ │ ├── Should_return_cobra_version_in_YAML_format.golden.txt │ │ ├── Should_return_cobra_version_in_default_Pretty_format.golden.txt │ │ ├── Should_return_cobra_version_in_short_format.golden.txt │ │ ├── Should_return_cobra_version_in_short_format_with_full_flag_name.golden.txt │ │ ├── Should_return_cobra_version_when_alias_v_is_used.golden.txt │ │ ├── Should_return_cobra_version_when_alias_ver_is_used.golden.txt │ │ ├── Should_return_default_printer_version.golden.txt │ │ ├── Should_return_plain_version.golden.txt │ │ ├── Should_return_upgrade_notice_from_standalone_command.golden.txt │ │ ├── Should_return_version_with_custom_Pretty_formatting.golden.txt │ │ ├── Should_return_version_with_custom_Pretty_layout.golden.txt │ │ ├── Should_return_version_with_custom_Pretty_renderer.golden.txt │ │ ├── Should_return_version_with_custom_fields_in_JSON_format.golden.txt │ │ ├── Should_return_version_with_custom_fields_in_YAML_format.golden.txt │ │ ├── Should_return_version_with_custom_fields_in_default_Pretty_format.golden.txt │ │ ├── Should_return_version_with_custom_upgrade_notice_in_JSON_format.golden.txt │ │ ├── Should_return_version_with_custom_upgrade_notice_in_YAML_format.golden.txt │ │ ├── Should_return_version_with_custom_upgrade_notice_in_default_Pretty_format.golden.txt │ │ ├── Should_return_version_with_custom_upgrade_notice_in_short_format.golden.txt │ │ ├── Should_return_version_with_executed_post_hook_in_JSON_format.golden.txt │ │ ├── Should_return_version_with_executed_post_hook_in_YAML_format.golden.txt │ │ ├── Should_return_version_with_executed_post_hook_in_default_Pretty_format.golden.txt │ │ ├── Should_return_version_with_upgrade_notice_in_JSON_format.golden.txt │ │ ├── Should_return_version_with_upgrade_notice_in_YAML_format.golden.txt │ │ ├── Should_return_version_with_upgrade_notice_in_default_Pretty_format.golden.txt │ │ └── Should_return_version_with_upgrade_notice_in_short_format.golden.txt │ │ ├── TestExamplesRecheckInterval.golden.txt │ │ └── TestExamplesRecheckIntervalrecheck.golden.txt ├── go.mod └── go.sum ├── upgrade ├── config_dir.go ├── github.go ├── github │ ├── head_fetch.go │ ├── http.go │ └── state_file.go ├── info.go └── options.go └── version.go /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull-request-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/.github/pull-request-template.md -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/coverall.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/.github/workflows/coverall.yml -------------------------------------------------------------------------------- /.github/workflows/testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/.github/workflows/testing.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/.golangci.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/README.md -------------------------------------------------------------------------------- /base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/base.go -------------------------------------------------------------------------------- /docs/assets/bell-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/assets/bell-icon.png -------------------------------------------------------------------------------- /docs/assets/examples/screen-cobra-alias-version_-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/assets/examples/screen-cobra-alias-version_-h.png -------------------------------------------------------------------------------- /docs/assets/examples/screen-cobra-version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/assets/examples/screen-cobra-version.png -------------------------------------------------------------------------------- /docs/assets/examples/screen-cobra-version_-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/assets/examples/screen-cobra-version_-h.png -------------------------------------------------------------------------------- /docs/assets/examples/screen-custom-fields-.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/assets/examples/screen-custom-fields-.png -------------------------------------------------------------------------------- /docs/assets/examples/screen-custom-formatting-.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/assets/examples/screen-custom-formatting-.png -------------------------------------------------------------------------------- /docs/assets/examples/screen-custom-layout--env-style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/assets/examples/screen-custom-layout--env-style.png -------------------------------------------------------------------------------- /docs/assets/examples/screen-custom-layout-.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/assets/examples/screen-custom-layout-.png -------------------------------------------------------------------------------- /docs/assets/examples/screen-custom-renderer-.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/assets/examples/screen-custom-renderer-.png -------------------------------------------------------------------------------- /docs/assets/examples/screen-plain-.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/assets/examples/screen-plain-.png -------------------------------------------------------------------------------- /docs/assets/examples/screen-printer--ojson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/assets/examples/screen-printer--ojson.png -------------------------------------------------------------------------------- /docs/assets/examples/screen-printer--oshort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/assets/examples/screen-printer--oshort.png -------------------------------------------------------------------------------- /docs/assets/examples/screen-printer--oyaml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/assets/examples/screen-printer--oyaml.png -------------------------------------------------------------------------------- /docs/assets/examples/screen-printer-.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/assets/examples/screen-printer-.png -------------------------------------------------------------------------------- /docs/assets/examples/screen-printer-post-hook-.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/assets/examples/screen-printer-post-hook-.png -------------------------------------------------------------------------------- /docs/assets/examples/screen-upgrade-notice-cobra-version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/assets/examples/screen-upgrade-notice-cobra-version.png -------------------------------------------------------------------------------- /docs/assets/examples/screen-upgrade-notice-cobra-version_-ojson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/assets/examples/screen-upgrade-notice-cobra-version_-ojson.png -------------------------------------------------------------------------------- /docs/assets/examples/screen-upgrade-notice-custom-version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/assets/examples/screen-upgrade-notice-custom-version.png -------------------------------------------------------------------------------- /docs/assets/examples/screen-upgrade-notice-standalone-.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/assets/examples/screen-upgrade-notice-standalone-.png -------------------------------------------------------------------------------- /docs/assets/examples/screen-upgrade-notice-sub-cmd-version_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/assets/examples/screen-upgrade-notice-sub-cmd-version_check.png -------------------------------------------------------------------------------- /docs/assets/hp-preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/assets/hp-preview.gif -------------------------------------------------------------------------------- /docs/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/assets/logo.png -------------------------------------------------------------------------------- /docs/assets/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/assets/preview.gif -------------------------------------------------------------------------------- /docs/assets/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/assets/preview.png -------------------------------------------------------------------------------- /docs/community/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/community/testing.md -------------------------------------------------------------------------------- /docs/customization/extra-fields.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/customization/extra-fields.md -------------------------------------------------------------------------------- /docs/customization/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/customization/index.md -------------------------------------------------------------------------------- /docs/customization/omit-unset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/customization/omit-unset.md -------------------------------------------------------------------------------- /docs/customization/pretty/custom-renderer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/customization/pretty/custom-renderer.md -------------------------------------------------------------------------------- /docs/customization/pretty/format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/customization/pretty/format.md -------------------------------------------------------------------------------- /docs/customization/pretty/layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/customization/pretty/layout.md -------------------------------------------------------------------------------- /docs/customization/upgrade-notice/check-sub-command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/customization/upgrade-notice/check-sub-command.md -------------------------------------------------------------------------------- /docs/customization/upgrade-notice/custom-renderer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/customization/upgrade-notice/custom-renderer.md -------------------------------------------------------------------------------- /docs/customization/upgrade-notice/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/customization/upgrade-notice/index.md -------------------------------------------------------------------------------- /docs/customization/upgrade-notice/layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/customization/upgrade-notice/layout.md -------------------------------------------------------------------------------- /docs/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/examples.md -------------------------------------------------------------------------------- /docs/get-started/build-ldflags/goreleaser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/get-started/build-ldflags/goreleaser.md -------------------------------------------------------------------------------- /docs/get-started/build-ldflags/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/get-started/build-ldflags/index.md -------------------------------------------------------------------------------- /docs/get-started/build-ldflags/magefile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/get-started/build-ldflags/magefile.md -------------------------------------------------------------------------------- /docs/get-started/build-ldflags/makefile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/get-started/build-ldflags/makefile.md -------------------------------------------------------------------------------- /docs/get-started/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/get-started/index.md -------------------------------------------------------------------------------- /docs/get-started/upgrade-notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/get-started/upgrade-notice.md -------------------------------------------------------------------------------- /docs/get-started/usage/cobra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/get-started/usage/cobra.md -------------------------------------------------------------------------------- /docs/get-started/usage/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/get-started/usage/index.md -------------------------------------------------------------------------------- /docs/get-started/usage/plain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/get-started/usage/plain.md -------------------------------------------------------------------------------- /docs/get-started/usage/printer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/get-started/usage/printer.md -------------------------------------------------------------------------------- /docs/get-started/usage/urfave-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/get-started/usage/urfave-cli.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/mkdocs-theme/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/mkdocs-theme/index.html -------------------------------------------------------------------------------- /docs/mkdocs-theme/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/mkdocs-theme/partials/footer.html -------------------------------------------------------------------------------- /docs/mkdocs-theme/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/mkdocs-theme/stylesheets/extra.css -------------------------------------------------------------------------------- /docs/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/quick-start.md -------------------------------------------------------------------------------- /docs/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/robots.txt -------------------------------------------------------------------------------- /docs/static/css/main.29ec7f3d.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/static/css/main.29ec7f3d.css -------------------------------------------------------------------------------- /docs/static/css/main.29ec7f3d.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/static/css/main.29ec7f3d.css.map -------------------------------------------------------------------------------- /docs/static/js/787.82eec9a0.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/static/js/787.82eec9a0.chunk.js -------------------------------------------------------------------------------- /docs/static/js/787.82eec9a0.chunk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/static/js/787.82eec9a0.chunk.js.map -------------------------------------------------------------------------------- /docs/static/js/main.247dde1c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/static/js/main.247dde1c.js -------------------------------------------------------------------------------- /docs/static/js/main.247dde1c.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/static/js/main.247dde1c.js.LICENSE.txt -------------------------------------------------------------------------------- /docs/static/js/main.247dde1c.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/static/js/main.247dde1c.js.map -------------------------------------------------------------------------------- /docs/static/media/boxes-line.cfad6c4c3799792fbd1d3cb8a478d9aa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/static/media/boxes-line.cfad6c4c3799792fbd1d3cb8a478d9aa.svg -------------------------------------------------------------------------------- /docs/static/media/bubble-aka-dna-line.7c7451949c569c715377cd53a958e33f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/static/media/bubble-aka-dna-line.7c7451949c569c715377cd53a958e33f.svg -------------------------------------------------------------------------------- /docs/static/media/chat-icon.5caf40d7ab324462b63ed700f5b74626.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/static/media/chat-icon.5caf40d7ab324462b63ed700f5b74626.svg -------------------------------------------------------------------------------- /docs/static/media/compass-icon.f60638433407d80fc169cc8b604e4013.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/static/media/compass-icon.f60638433407d80fc169cc8b604e4013.svg -------------------------------------------------------------------------------- /docs/static/media/customize-icon.289d3c03e7d89c5782d18cc176dff56a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/static/media/customize-icon.289d3c03e7d89c5782d18cc176dff56a.svg -------------------------------------------------------------------------------- /docs/static/media/github-icon.718ba95796fa383edd85c429d3a75cdc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/static/media/github-icon.718ba95796fa383edd85c429d3a75cdc.svg -------------------------------------------------------------------------------- /docs/static/media/linkedin-icon.5cd8696294f290174d81259ec287c192.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/static/media/linkedin-icon.5cd8696294f290174d81259ec287c192.svg -------------------------------------------------------------------------------- /docs/static/media/modules-icon.2b1fb9e2d2fee76394391fa56881c012.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/static/media/modules-icon.2b1fb9e2d2fee76394391fa56881c012.svg -------------------------------------------------------------------------------- /docs/static/media/play-icon.aeddd58b625b0405a407ce0fbe5ac661.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/static/media/play-icon.aeddd58b625b0405a407ce0fbe5ac661.svg -------------------------------------------------------------------------------- /docs/static/media/shield-check-line.535ff0d2fdf4b90cc1d44ae59f6d6dd6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/static/media/shield-check-line.535ff0d2fdf4b90cc1d44ae59f6d6dd6.svg -------------------------------------------------------------------------------- /docs/static/media/twitter-icon.80fb3c50f09561684a5037fae8f2f4b2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/static/media/twitter-icon.80fb3c50f09561684a5037fae8f2f4b2.svg -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/cobra-alias/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/examples/cobra-alias/main.go -------------------------------------------------------------------------------- /examples/cobra/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/examples/cobra/main.go -------------------------------------------------------------------------------- /examples/custom-fields/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/examples/custom-fields/main.go -------------------------------------------------------------------------------- /examples/custom-formatting/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/examples/custom-formatting/main.go -------------------------------------------------------------------------------- /examples/custom-layout/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/examples/custom-layout/main.go -------------------------------------------------------------------------------- /examples/custom-renderer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/examples/custom-renderer/main.go -------------------------------------------------------------------------------- /examples/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/examples/go.mod -------------------------------------------------------------------------------- /examples/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/examples/go.sum -------------------------------------------------------------------------------- /examples/plain/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/examples/plain/main.go -------------------------------------------------------------------------------- /examples/printer-post-hook/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/examples/printer-post-hook/main.go -------------------------------------------------------------------------------- /examples/printer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/examples/printer/main.go -------------------------------------------------------------------------------- /examples/style.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/examples/style.yaml -------------------------------------------------------------------------------- /examples/upgrade-notice-cobra/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/examples/upgrade-notice-cobra/main.go -------------------------------------------------------------------------------- /examples/upgrade-notice-custom/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/examples/upgrade-notice-custom/main.go -------------------------------------------------------------------------------- /examples/upgrade-notice-global/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/examples/upgrade-notice-global/main.go -------------------------------------------------------------------------------- /examples/upgrade-notice-standalone/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/examples/upgrade-notice-standalone/main.go -------------------------------------------------------------------------------- /examples/upgrade-notice-sub-cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/examples/upgrade-notice-sub-cmd/main.go -------------------------------------------------------------------------------- /extension/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/extension/cobra.go -------------------------------------------------------------------------------- /extension/cobra_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/extension/cobra_test.go -------------------------------------------------------------------------------- /extension/opts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/extension/opts.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/go.sum -------------------------------------------------------------------------------- /magefiles/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/magefiles/doc.go -------------------------------------------------------------------------------- /magefiles/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/magefiles/go.mod -------------------------------------------------------------------------------- /magefiles/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/magefiles/go.sum -------------------------------------------------------------------------------- /magefiles/hack/note.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/magefiles/hack/note.sh -------------------------------------------------------------------------------- /magefiles/hack/preview.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/magefiles/hack/preview.sh -------------------------------------------------------------------------------- /magefiles/hack/preview_window.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/magefiles/hack/preview_window.scpt -------------------------------------------------------------------------------- /magefiles/hack/resize_window.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/magefiles/hack/resize_window.scpt -------------------------------------------------------------------------------- /magefiles/magefile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/magefiles/magefile.go -------------------------------------------------------------------------------- /magefiles/preview-stub/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/magefiles/preview-stub/main.go -------------------------------------------------------------------------------- /magefiles/target/dead-link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/magefiles/target/dead-link.go -------------------------------------------------------------------------------- /magefiles/target/format-docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/magefiles/target/format-docs.go -------------------------------------------------------------------------------- /magefiles/target/gallery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/magefiles/target/gallery.go -------------------------------------------------------------------------------- /magefiles/target/pretty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/magefiles/target/pretty.go -------------------------------------------------------------------------------- /magefiles/target/preview.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/magefiles/target/preview.go -------------------------------------------------------------------------------- /magefiles/target/sync-homepage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/magefiles/target/sync-homepage.go -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /printer/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/printer/export_test.go -------------------------------------------------------------------------------- /printer/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/printer/format.go -------------------------------------------------------------------------------- /printer/helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/printer/helper_test.go -------------------------------------------------------------------------------- /printer/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/printer/json.go -------------------------------------------------------------------------------- /printer/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/printer/json_test.go -------------------------------------------------------------------------------- /printer/opts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/printer/opts.go -------------------------------------------------------------------------------- /printer/pretty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/printer/pretty.go -------------------------------------------------------------------------------- /printer/pretty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/printer/pretty_test.go -------------------------------------------------------------------------------- /printer/printer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/printer/printer.go -------------------------------------------------------------------------------- /printer/printer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/printer/printer_test.go -------------------------------------------------------------------------------- /printer/short.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/printer/short.go -------------------------------------------------------------------------------- /printer/short_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/printer/short_test.go -------------------------------------------------------------------------------- /printer/testdata/TestPrettyPrinter/Built-in_Info_fields.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/printer/testdata/TestPrettyPrinter/Built-in_Info_fields.golden.txt -------------------------------------------------------------------------------- /printer/testdata/TestPrettyPrinter/Custom_Info_fields.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/printer/testdata/TestPrettyPrinter/Custom_Info_fields.golden.txt -------------------------------------------------------------------------------- /printer/testdata/TestPrettyPrinter/Nil_Info.golden.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /printer/testdata/TestPrettyPrinterOptions/Custom_formatting.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/printer/testdata/TestPrettyPrinterOptions/Custom_formatting.golden.txt -------------------------------------------------------------------------------- /printer/testdata/TestPrettyPrinterOptions/Custom_layout.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/printer/testdata/TestPrettyPrinterOptions/Custom_layout.golden.txt -------------------------------------------------------------------------------- /printer/testdata/TestPrettyPrinterOptions/Custom_post_render_hook.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/printer/testdata/TestPrettyPrinterOptions/Custom_post_render_hook.golden.txt -------------------------------------------------------------------------------- /printer/testdata/TestPrettyPrinterOptions/Custom_renderer.golden.txt: -------------------------------------------------------------------------------- 1 | version: 0.6.1 2 | isSmart: false -------------------------------------------------------------------------------- /printer/testdata/TestPrettyPrinterOptions/Custom_style.golden.txt: -------------------------------------------------------------------------------- 1 | 💡 testing -------------------------------------------------------------------------------- /printer/testdata/TestPrinter/Print_in_JSON_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/printer/testdata/TestPrinter/Print_in_JSON_format.golden.txt -------------------------------------------------------------------------------- /printer/testdata/TestPrinter/Print_in_JSON_format_when_long_flag_is_used.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/printer/testdata/TestPrinter/Print_in_JSON_format_when_long_flag_is_used.golden.txt -------------------------------------------------------------------------------- /printer/testdata/TestPrinter/Print_in_Pretty_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/printer/testdata/TestPrinter/Print_in_Pretty_format.golden.txt -------------------------------------------------------------------------------- /printer/testdata/TestPrinter/Print_in_YAML_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/printer/testdata/TestPrinter/Print_in_YAML_format.golden.txt -------------------------------------------------------------------------------- /printer/testdata/TestPrinter/Print_in_default_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/printer/testdata/TestPrinter/Print_in_default_format.golden.txt -------------------------------------------------------------------------------- /printer/testdata/TestPrinterPrint.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/printer/testdata/TestPrinterPrint.golden.txt -------------------------------------------------------------------------------- /printer/testdata/TestPrinterStyleFileOptions/Print_custom_layout.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/printer/testdata/TestPrinterStyleFileOptions/Print_custom_layout.golden.txt -------------------------------------------------------------------------------- /printer/testdata/TestPrinterStyleFileOptions/Print_default_layout.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/printer/testdata/TestPrinterStyleFileOptions/Print_default_layout.golden.txt -------------------------------------------------------------------------------- /printer/testdata/TestPrinterStyleFileOptions/customStyle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/printer/testdata/TestPrinterStyleFileOptions/customStyle.json -------------------------------------------------------------------------------- /printer/testdata/TestPrinterStyleFileOptions/customStyle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/printer/testdata/TestPrinterStyleFileOptions/customStyle.yaml -------------------------------------------------------------------------------- /printer/testdata/TestPrinterStyleFileOptions/invalidStyle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/printer/testdata/TestPrinterStyleFileOptions/invalidStyle.json -------------------------------------------------------------------------------- /printer/testdata/TestPrinterStyleFileOptions/invalidStyle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/printer/testdata/TestPrinterStyleFileOptions/invalidStyle.yaml -------------------------------------------------------------------------------- /printer/testdata/TestPrinterStyleFromEnvOptionsUseDefaults.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/printer/testdata/TestPrinterStyleFromEnvOptionsUseDefaults.golden.txt -------------------------------------------------------------------------------- /printer/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/printer/yaml.go -------------------------------------------------------------------------------- /printer/yaml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/printer/yaml_test.go -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | 3.7 2 | -------------------------------------------------------------------------------- /style/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/style/config.go -------------------------------------------------------------------------------- /style/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/style/format.go -------------------------------------------------------------------------------- /style/go-tpl-funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/style/go-tpl-funcs.go -------------------------------------------------------------------------------- /style/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/style/helpers.go -------------------------------------------------------------------------------- /style/layout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/style/layout.go -------------------------------------------------------------------------------- /style/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/style/render.go -------------------------------------------------------------------------------- /style/termenvx/colors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/style/termenvx/colors.go -------------------------------------------------------------------------------- /style/termenvx/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/style/termenvx/profile.go -------------------------------------------------------------------------------- /style/termenvx/style.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/style/termenvx/style.go -------------------------------------------------------------------------------- /style/termenvx/termenv-tpl-funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/style/termenvx/termenv-tpl-funcs.go -------------------------------------------------------------------------------- /term/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/term/terminal.go -------------------------------------------------------------------------------- /tests/e2e/e2e_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/e2e_test.go -------------------------------------------------------------------------------- /tests/e2e/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/helpers_test.go -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesColorOutput/Should_return_cobra_help_menu.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesColorOutput/Should_return_cobra_help_menu.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesColorOutput/Should_return_cobra_version_help.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesColorOutput/Should_return_cobra_version_help.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesColorOutput/Should_return_cobra_version_help_with_v_alias.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesColorOutput/Should_return_cobra_version_help_with_v_alias.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesColorOutput/Should_return_cobra_version_in_JSON_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesColorOutput/Should_return_cobra_version_in_JSON_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesColorOutput/Should_return_cobra_version_in_YAML_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesColorOutput/Should_return_cobra_version_in_YAML_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesColorOutput/Should_return_cobra_version_in_default_Pretty_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesColorOutput/Should_return_cobra_version_in_default_Pretty_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesColorOutput/Should_return_cobra_version_in_short_format.golden.txt: -------------------------------------------------------------------------------- 1 | 0.6.1 2 | -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesColorOutput/Should_return_cobra_version_in_short_format_with_full_flag_name.golden.txt: -------------------------------------------------------------------------------- 1 | 0.6.1 2 | -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesColorOutput/Should_return_cobra_version_when_alias_v_is_used.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesColorOutput/Should_return_cobra_version_when_alias_v_is_used.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesColorOutput/Should_return_cobra_version_when_alias_ver_is_used.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesColorOutput/Should_return_cobra_version_when_alias_ver_is_used.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesColorOutput/Should_return_default_printer_version.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesColorOutput/Should_return_default_printer_version.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesColorOutput/Should_return_plain_version.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesColorOutput/Should_return_plain_version.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesColorOutput/Should_return_upgrade_notice_from_standalone_command.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesColorOutput/Should_return_upgrade_notice_from_standalone_command.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_custom_Pretty_formatting.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_custom_Pretty_formatting.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_custom_Pretty_layout.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_custom_Pretty_layout.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_custom_Pretty_renderer.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_custom_Pretty_renderer.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_custom_fields_in_JSON_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_custom_fields_in_JSON_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_custom_fields_in_YAML_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_custom_fields_in_YAML_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_custom_fields_in_default_Pretty_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_custom_fields_in_default_Pretty_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_custom_upgrade_notice_in_JSON_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_custom_upgrade_notice_in_JSON_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_custom_upgrade_notice_in_YAML_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_custom_upgrade_notice_in_YAML_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_custom_upgrade_notice_in_default_Pretty_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_custom_upgrade_notice_in_default_Pretty_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_custom_upgrade_notice_in_short_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_custom_upgrade_notice_in_short_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_executed_post_hook_in_JSON_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_executed_post_hook_in_JSON_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_executed_post_hook_in_YAML_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_executed_post_hook_in_YAML_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_executed_post_hook_in_default_Pretty_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_executed_post_hook_in_default_Pretty_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_upgrade_notice_in_JSON_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_upgrade_notice_in_JSON_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_upgrade_notice_in_YAML_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_upgrade_notice_in_YAML_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_upgrade_notice_in_default_Pretty_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_upgrade_notice_in_default_Pretty_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_upgrade_notice_in_short_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesColorOutput/Should_return_version_with_upgrade_notice_in_short_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_cobra_help_menu.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_cobra_help_menu.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_cobra_version_help.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_cobra_version_help.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_cobra_version_help_with_v_alias.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_cobra_version_help_with_v_alias.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_cobra_version_in_JSON_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_cobra_version_in_JSON_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_cobra_version_in_YAML_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_cobra_version_in_YAML_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_cobra_version_in_default_Pretty_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_cobra_version_in_default_Pretty_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_cobra_version_in_short_format.golden.txt: -------------------------------------------------------------------------------- 1 | 0.6.1 2 | -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_cobra_version_in_short_format_with_full_flag_name.golden.txt: -------------------------------------------------------------------------------- 1 | 0.6.1 2 | -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_cobra_version_when_alias_v_is_used.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_cobra_version_when_alias_v_is_used.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_cobra_version_when_alias_ver_is_used.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_cobra_version_when_alias_ver_is_used.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_default_printer_version.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_default_printer_version.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_plain_version.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_plain_version.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_upgrade_notice_from_standalone_command.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_upgrade_notice_from_standalone_command.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_custom_Pretty_formatting.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_custom_Pretty_formatting.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_custom_Pretty_layout.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_custom_Pretty_layout.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_custom_Pretty_renderer.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_custom_Pretty_renderer.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_custom_fields_in_JSON_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_custom_fields_in_JSON_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_custom_fields_in_YAML_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_custom_fields_in_YAML_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_custom_fields_in_default_Pretty_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_custom_fields_in_default_Pretty_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_custom_upgrade_notice_in_JSON_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_custom_upgrade_notice_in_JSON_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_custom_upgrade_notice_in_YAML_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_custom_upgrade_notice_in_YAML_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_custom_upgrade_notice_in_default_Pretty_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_custom_upgrade_notice_in_default_Pretty_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_custom_upgrade_notice_in_short_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_custom_upgrade_notice_in_short_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_executed_post_hook_in_JSON_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_executed_post_hook_in_JSON_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_executed_post_hook_in_YAML_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_executed_post_hook_in_YAML_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_executed_post_hook_in_default_Pretty_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_executed_post_hook_in_default_Pretty_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_upgrade_notice_in_JSON_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_upgrade_notice_in_JSON_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_upgrade_notice_in_YAML_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_upgrade_notice_in_YAML_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_upgrade_notice_in_default_Pretty_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_upgrade_notice_in_default_Pretty_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_upgrade_notice_in_short_format.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesNoColorOutput/Should_return_version_with_upgrade_notice_in_short_format.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesRecheckInterval.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesRecheckInterval.golden.txt -------------------------------------------------------------------------------- /tests/e2e/testdata/TestExamplesRecheckIntervalrecheck.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/e2e/testdata/TestExamplesRecheckIntervalrecheck.golden.txt -------------------------------------------------------------------------------- /tests/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/go.mod -------------------------------------------------------------------------------- /tests/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/tests/go.sum -------------------------------------------------------------------------------- /upgrade/config_dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/upgrade/config_dir.go -------------------------------------------------------------------------------- /upgrade/github.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/upgrade/github.go -------------------------------------------------------------------------------- /upgrade/github/head_fetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/upgrade/github/head_fetch.go -------------------------------------------------------------------------------- /upgrade/github/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/upgrade/github/http.go -------------------------------------------------------------------------------- /upgrade/github/state_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/upgrade/github/state_file.go -------------------------------------------------------------------------------- /upgrade/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/upgrade/info.go -------------------------------------------------------------------------------- /upgrade/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/upgrade/options.go -------------------------------------------------------------------------------- /version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mszostok/version/HEAD/version.go --------------------------------------------------------------------------------