https://github.com/etcd-io/etcd
Raw File
Tip revision: a2d16b52bb5a6e85b251f6f919ccdb03518e496d authored by Brandon Philips on 21 May 2014, 03:46:46 UTC
chore(server): bump to 0.4.1
Tip revision: a2d16b5
release-version
#!/bin/sh

VER=$(git describe --tags HEAD)

cat <<EOF
package server
const ReleaseVersion = "$VER"
EOF
back to top