~dricottone/textwrap

b4b5e0f115cd621eb226f0de660f7b641b61f724 — Dominic Ricottone 2 years ago db7d965 dev v0.0.3
Updating go version and module name
4 files changed, 7 insertions(+), 4 deletions(-)

A .gitignore
M Makefile
M go.mod
M main.go
A .gitignore => .gitignore +3 -0
@@ 0,0 1,3 @@
textwrap
go.sum


M Makefile => Makefile +1 -1
@@ 1,5 1,5 @@
clean:
	rm -rf textwrap
	rm -rf textwrap go.sum

build:
	go build

M go.mod => go.mod +2 -2
@@ 1,3 1,3 @@
module git.dominic-ricottone.com/textwrap
module git.dominic-ricottone.com/~dricottone/textwrap

go 1.15
go 1.19

M main.go => main.go +1 -1
@@ 9,7 9,7 @@ import (
	"regexp"
	"flag"

	"git.dominic-ricottone.com/textwrap/common"
	"git.dominic-ricottone.com/~dricottone/textwrap/common"
)

const LINE_LENGTH = 80