diff --git a/coding/qr.go b/coding/qr.go index 4aa5288..bfc3ea4 100644 --- a/coding/qr.go +++ b/coding/qr.go @@ -3,7 +3,7 @@ // license that can be found in the LICENSE file. // Package coding implements low-level QR coding details. -package coding +package coding // import "rsc.io/qr/coding" import ( "fmt" diff --git a/debian/changelog b/debian/changelog index a4801c0..9d30e36 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +golang-rsc-qr (0.2.0-1) UNRELEASED; urgency=medium + + * New upstream release. + + -- Debian Janitor Sat, 10 Aug 2019 23:45:12 +0000 + golang-rsc-qr (0.0~git20161121.48b2ede-1) unstable; urgency=medium * Initial release (Closes: #890197) diff --git a/gf256/gf256.go b/gf256/gf256.go index bfeeeb3..05e5645 100644 --- a/gf256/gf256.go +++ b/gf256/gf256.go @@ -3,7 +3,7 @@ // license that can be found in the LICENSE file. // Package gf256 implements arithmetic over the Galois Field GF(256). -package gf256 +package gf256 // import "rsc.io/qr/gf256" import "strconv" diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..7fbfc86 --- /dev/null +++ b/go.mod @@ -0,0 +1 @@ +module rsc.io/qr diff --git a/qr.go b/qr.go index 254b532..ace7e6f 100644 --- a/qr.go +++ b/qr.go @@ -5,7 +5,7 @@ /* Package qr encodes QR codes. */ -package qr +package qr // import "rsc.io/qr" import ( "errors"