├── .crystal-version ├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── shard.lock ├── shard.yml ├── spec ├── crelease_spec.cr └── spec_helper.cr └── src ├── crelease.cr └── crelease └── version.cr /.crystal-version: -------------------------------------------------------------------------------- 1 | 0.35.1 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elorest/CRelease/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: crystal 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elorest/CRelease/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elorest/CRelease/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elorest/CRelease/HEAD/README.md -------------------------------------------------------------------------------- /shard.lock: -------------------------------------------------------------------------------- 1 | version: 2.0 2 | shards: {} 3 | -------------------------------------------------------------------------------- /shard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elorest/CRelease/HEAD/shard.yml -------------------------------------------------------------------------------- /spec/crelease_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elorest/CRelease/HEAD/spec/crelease_spec.cr -------------------------------------------------------------------------------- /spec/spec_helper.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elorest/CRelease/HEAD/spec/spec_helper.cr -------------------------------------------------------------------------------- /src/crelease.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elorest/CRelease/HEAD/src/crelease.cr -------------------------------------------------------------------------------- /src/crelease/version.cr: -------------------------------------------------------------------------------- 1 | module Crelease 2 | VERSION = "1.2.1" 3 | end 4 | --------------------------------------------------------------------------------