Merge pull request #7 from juliusv/update-protobuf-pkg
Update protobuf library package name.
diff --git a/README.md b/README.md
index 3d7e342..8f4f4df 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@
Because [Code Review 9102043](https://codereview.appspot.com/9102043/) is
destined to never be merged into mainline (i.e., never be promoted to formal
-[goprotobuf features](https://code.google.com/p/goprotobuf)), this repository
+[goprotobuf features](https://github.com/golang/protobuf)), this repository
will live here in the wild.
# Documentation
diff --git a/ext/all_test.go b/ext/all_test.go
index 98d4e2d..7270b67 100644
--- a/ext/all_test.go
+++ b/ext/all_test.go
@@ -21,8 +21,8 @@
"testing"
"testing/quick"
- . "code.google.com/p/goprotobuf/proto"
- . "code.google.com/p/goprotobuf/proto/testdata"
+ . "github.com/golang/protobuf/proto"
+ . "github.com/golang/protobuf/proto/testdata"
)
func TestWriteDelimited(t *testing.T) {
diff --git a/ext/decode.go b/ext/decode.go
index a9af233..28b520e 100644
--- a/ext/decode.go
+++ b/ext/decode.go
@@ -19,7 +19,7 @@
"errors"
"io"
- "code.google.com/p/goprotobuf/proto"
+ "github.com/golang/protobuf/proto"
)
var errInvalidVarint = errors.New("invalid varint32 encountered")
diff --git a/ext/encode.go b/ext/encode.go
index a7a9345..473b31d 100644
--- a/ext/encode.go
+++ b/ext/encode.go
@@ -18,7 +18,7 @@
"encoding/binary"
"io"
- "code.google.com/p/goprotobuf/proto"
+ "github.com/golang/protobuf/proto"
)
// WriteDelimited encodes and dumps a message to the provided writer prefixed
diff --git a/ext/fixtures_test.go b/ext/fixtures_test.go
index 9cfcbbf..07e75c5 100644
--- a/ext/fixtures_test.go
+++ b/ext/fixtures_test.go
@@ -1,5 +1,5 @@
// Copyright 2010 The Go Authors. All rights reserved.
-// http://code.google.com/p/goprotobuf/
+// http://github.com/golang/protobuf/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
@@ -30,11 +30,11 @@
package ext
import (
- . "code.google.com/p/goprotobuf/proto"
- . "code.google.com/p/goprotobuf/proto/testdata"
+ . "github.com/golang/protobuf/proto"
+ . "github.com/golang/protobuf/proto/testdata"
)
-// FROM https://code.google.com/p/goprotobuf/source/browse/proto/all_test.go.
+// FROM https://github.com/golang/protobuf/blob/master/proto/all_test.go.
func initGoTestField() *GoTestField {
f := new(GoTestField)