Merge release branch 'release-1.0.0'

Этот коммит содержится в:
Christopher Speller
2015-09-29 15:34:21 -04:00
родитель 2d5b284186 9c3feff5bc
Коммит 942702ff1a
21 изменённых файлов: 313 добавлений и 406 удалений

Просмотреть файл

@@ -12,7 +12,7 @@ import (
// It should be maitained in chronological order with most current
// release at the front of the list.
var versions = []string{
"0.8.0",
"1.0.0",
"0.7.1",
"0.7.0",
"0.6.0",

Просмотреть файл

@@ -36,7 +36,7 @@ func TestSplitVersion(t *testing.T) {
}
func TestGetPreviousVersion(t *testing.T) {
if major, minor := GetPreviousVersion("0.8.0"); major != 0 || minor != 7 {
if major, minor := GetPreviousVersion("1.0.0"); major != 0 || minor != 7 {
t.Fatal(major, minor)
}