├── .bashrc ├── .github └── workflows │ └── release.yml ├── .gitignore ├── .goreleaser.yml ├── .semver.yaml ├── .tool-versions ├── Dockerfile ├── LICENCE ├── Makefile ├── README.md ├── cmd └── semver │ └── main.go ├── go.mod ├── go.sum ├── internal ├── commands │ ├── get.go │ ├── init.go │ └── up.go ├── entities │ ├── version.go │ └── version_test.go ├── enum │ └── phases │ │ └── phases.go └── utils │ └── str │ └── parsers.go └── scripts └── fmtcheck.sh /.bashrc: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | eval `ssh-agent -s` > /dev/null 3 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykonlsf/semver-cli/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykonlsf/semver-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykonlsf/semver-cli/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.semver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykonlsf/semver-cli/HEAD/.semver.yaml -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | golang 1.22.3 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykonlsf/semver-cli/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykonlsf/semver-cli/HEAD/LICENCE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykonlsf/semver-cli/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykonlsf/semver-cli/HEAD/README.md -------------------------------------------------------------------------------- /cmd/semver/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykonlsf/semver-cli/HEAD/cmd/semver/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykonlsf/semver-cli/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykonlsf/semver-cli/HEAD/go.sum -------------------------------------------------------------------------------- /internal/commands/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykonlsf/semver-cli/HEAD/internal/commands/get.go -------------------------------------------------------------------------------- /internal/commands/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykonlsf/semver-cli/HEAD/internal/commands/init.go -------------------------------------------------------------------------------- /internal/commands/up.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykonlsf/semver-cli/HEAD/internal/commands/up.go -------------------------------------------------------------------------------- /internal/entities/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykonlsf/semver-cli/HEAD/internal/entities/version.go -------------------------------------------------------------------------------- /internal/entities/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykonlsf/semver-cli/HEAD/internal/entities/version_test.go -------------------------------------------------------------------------------- /internal/enum/phases/phases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykonlsf/semver-cli/HEAD/internal/enum/phases/phases.go -------------------------------------------------------------------------------- /internal/utils/str/parsers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykonlsf/semver-cli/HEAD/internal/utils/str/parsers.go -------------------------------------------------------------------------------- /scripts/fmtcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykonlsf/semver-cli/HEAD/scripts/fmtcheck.sh --------------------------------------------------------------------------------