From b02bc4a87687d00f4c21fcb7b7e9b8fea7a00729 Mon Sep 17 00:00:00 2001 From: Javier Feliu Date: Mon, 4 Apr 2022 11:51:06 -0400 Subject: [PATCH] Changed to version 2. Fixed readme --- README.md | 4 ++-- cmd/goplantuml/main.go | 2 +- go.mod | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8a15e96..e622800 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![Build Status](https://travis-ci.org/jfeliu007/goplantuml.svg?branch=master)](https://travis-ci.org/jfeliu007/goplantuml) [![Mentioned in Awesome Go](https://awesome.re/mentioned-badge.svg)](https://github.com/avelino/awesome-go) [![DUMELS Diagram](https://www.dumels.com/api/v1/badge/23ff0222-e93b-4e9f-a4ef-4d5d9b7a5c7d)](https://www.dumels.com/diagram/23ff0222-e93b-4e9f-a4ef-4d5d9b7a5c7d) -# GoPlantUML +# GoPlantUML V2 PlantUML Class Diagram Generator for golang projects. Generates class diagram text compatible with plantuml with the information of all structures and interfaces as well as the relationship among them. @@ -14,7 +14,7 @@ Take a look at [www.dumels.com](https://www.dumels.com). We have created dumels Please, review the code of conduct [here](https://github.com/jfeliu007/goplantuml/blob/master/CODE_OF_CONDUCT.md "here"). ### Prerequisites -golang 1.10 or above +golang 1.17 or above ### Installing diff --git a/cmd/goplantuml/main.go b/cmd/goplantuml/main.go index 6419f55..fccce9a 100644 --- a/cmd/goplantuml/main.go +++ b/cmd/goplantuml/main.go @@ -10,7 +10,7 @@ import ( "sort" "strings" - goplantuml "github.com/jfeliu007/goplantuml/parser" + goplantuml "github.com/jfeliu007/goplantuml/v2/parser" ) // RenderingOptionSlice will implements the sort interface diff --git a/go.mod b/go.mod index e99d4f7..489e446 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/jfeliu007/goplantuml +module github.com/jfeliu007/goplantuml/v2 go 1.17