containerd/cmd/ctr
Stephen J Day 935144fadd
version: finish version setup
This setup will now correctly set the version number from the git tag.
When using `--version`, we will see the binary name, the package it was
built from and a git hash based on the tag:

```console
$./bin/dist -v
./bin/dist github.com/docker/containerd 0b45d91.m
```

Note that in the above example, if we set a tag of `v1.0.0-dev`, that
will show up in the version number, as follows:

```console
$./bin/dist -v
./bin/dist github.com/docker/containerd v1.0.0-dev
```

Once commits are made past that tag, the version number will be
expressed relative to that tag and include a git hash:

```console
$./bin/dist -v
./bin/dist github.com/docker/containerd v1.0.0-dev-1-g7953e96.m
```

Some these examples include a `.m` postfix. This indicates that the
binary was build from a source tree with local modifications.

We can add a dev tag to start getting 1.0 version numbers for test
builds.

Signed-off-by: Stephen J Day <stephen.day@docker.com>
2017-02-22 13:16:06 -08:00
..
delete.go Remove bundles from API 2017-02-15 13:56:41 -08:00
events.go Remove bundles from API 2017-02-15 13:56:41 -08:00
list.go ctr: fix Sprintf 2017-02-20 05:28:09 +00:00
main.go version: finish version setup 2017-02-22 13:16:06 -08:00
pprof.go Add config file 2017-02-21 11:22:08 -08:00
run.go Ensure to read all io in error cases 2017-02-21 08:46:04 -08:00
shim.go api: introduce api/{types,services} for deduplication of API definition 2017-02-14 02:42:13 +00:00
utils.go Change Container interface to include Info 2017-02-16 09:59:40 -08:00