From b4b5e0f115cd621eb226f0de660f7b641b61f724 Mon Sep 17 00:00:00 2001 From: Dominic Ricottone Date: Mon, 12 Sep 2022 14:08:37 -0500 Subject: [PATCH] Updating go version and module name --- .gitignore | 3 +++ Makefile | 2 +- go.mod | 4 ++-- main.go | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..52fb6f5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +textwrap +go.sum + diff --git a/Makefile b/Makefile index 77b7cf0..79299b3 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ clean: - rm -rf textwrap + rm -rf textwrap go.sum build: go build diff --git a/go.mod b/go.mod index 44cdbdb..bea6416 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module git.dominic-ricottone.com/textwrap +module git.dominic-ricottone.com/~dricottone/textwrap -go 1.15 +go 1.19 diff --git a/main.go b/main.go index f77a72d..cb83baf 100644 --- a/main.go +++ b/main.go @@ -9,7 +9,7 @@ import ( "regexp" "flag" - "git.dominic-ricottone.com/textwrap/common" + "git.dominic-ricottone.com/~dricottone/textwrap/common" ) const LINE_LENGTH = 80 -- 2.45.2