From 901a870769598144b16ae04f2372a9a7df5c9ea8 Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Sat, 25 May 2019 06:10:20 -0400 Subject: [PATCH] go.mod: bump to christine.website/v1 (#43) --- cmd/site/html.go | 4 ++-- cmd/site/main.go | 6 +++--- cmd/site/rss.go | 2 +- go.mod | 2 +- go.sum | 4 ++++ internal/blog/blog.go | 2 +- internal/front/front_test.go | 2 +- internal/jsonfeed/jsonfeed_test.go | 2 +- 8 files changed, 14 insertions(+), 10 deletions(-) diff --git a/cmd/site/html.go b/cmd/site/html.go index b3fa484..2785614 100644 --- a/cmd/site/html.go +++ b/cmd/site/html.go @@ -8,8 +8,8 @@ import ( "path/filepath" "time" - "christine.website/internal" - "christine.website/internal/blog" + "christine.website/v1/internal" + "christine.website/v1/internal/blog" "github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus/promauto" "within.website/ln" diff --git a/cmd/site/main.go b/cmd/site/main.go index 92f636d..261fe97 100644 --- a/cmd/site/main.go +++ b/cmd/site/main.go @@ -9,9 +9,9 @@ import ( "sort" "time" - "christine.website/internal/blog" - "christine.website/internal/jsonfeed" - "christine.website/internal/middleware" + "christine.website/v1/internal/blog" + "christine.website/v1/internal/jsonfeed" + "christine.website/v1/internal/middleware" "github.com/gorilla/feeds" "github.com/povilasv/prommod" "github.com/prometheus/client_golang/prometheus" diff --git a/cmd/site/rss.go b/cmd/site/rss.go index e03e07f..67f6b82 100644 --- a/cmd/site/rss.go +++ b/cmd/site/rss.go @@ -5,7 +5,7 @@ import ( "net/http" "time" - "christine.website/internal" + "christine.website/v1/internal" "within.website/ln" "within.website/ln/opname" ) diff --git a/go.mod b/go.mod index 66f2981..5f61fb0 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module christine.website +module christine.website/v1 require ( github.com/celrenheit/sandflake v0.0.0-20171226210037-92cb626f32dc diff --git a/go.sum b/go.sum index 8439a13..feb6b87 100644 --- a/go.sum +++ b/go.sum @@ -7,6 +7,8 @@ github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+Ce github.com/celrenheit/sandflake v0.0.0-20171226210037-92cb626f32dc h1:JcF3zLolKwrXXeBjvczfaxd3kxwFEBmiBQ6tOdha6QQ= github.com/celrenheit/sandflake v0.0.0-20171226210037-92cb626f32dc/go.mod h1:7L8gY0+4GYeBc9TvqVuDUq7tXuM6Sj7llnt7HkVwWlQ= github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= +github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8= + github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= @@ -92,6 +94,7 @@ golang.org/x/net v0.0.0-20181201002055-351d144fa1fc h1:a3CU5tJYVj92DY2LaA1kUkrsq golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190328230028-74de082e2cca h1:hyA6yiAgbUwuWqtscNvWAI7U1CtlaD1KilQ6iudt1aI= golang.org/x/net v0.0.0-20190328230028-74de082e2cca/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/sync v0.0.0-20181108010431-42b317875d0f h1:Bl/8QSvNqXvPGPGXa2z5xUTmV7VDcZyvRZ+QQXkXTZQ= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= @@ -100,6 +103,7 @@ golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5h golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= diff --git a/internal/blog/blog.go b/internal/blog/blog.go index eac5d64..d412f92 100644 --- a/internal/blog/blog.go +++ b/internal/blog/blog.go @@ -9,7 +9,7 @@ import ( "strings" "time" - "christine.website/internal/front" + "christine.website/v1/internal/front" "github.com/russross/blackfriday" ) diff --git a/internal/front/front_test.go b/internal/front/front_test.go index 42094f5..932d2e3 100644 --- a/internal/front/front_test.go +++ b/internal/front/front_test.go @@ -4,7 +4,7 @@ import ( "fmt" "log" - "christine.website/internal/front" + "christine.website/v1/internal/front" ) var markdown = []byte(`--- diff --git a/internal/jsonfeed/jsonfeed_test.go b/internal/jsonfeed/jsonfeed_test.go index da8cb04..cc6578e 100644 --- a/internal/jsonfeed/jsonfeed_test.go +++ b/internal/jsonfeed/jsonfeed_test.go @@ -9,7 +9,7 @@ import ( "testing" "time" - "christine.website/internal/jsonfeed" + "christine.website/v1/internal/jsonfeed" "github.com/stretchr/testify/assert" )