From fafe6a43849b4614fc9ecabb05f2d75e21b73b2b Mon Sep 17 00:00:00 2001 From: Jess Frazelle Date: Wed, 2 Feb 2022 19:12:42 -0800 Subject: [PATCH] bump the version Signed-off-by: Jess Frazelle --- VERSION.txt | 2 +- spec.json | 3 ++- types.go | 3 +++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/VERSION.txt b/VERSION.txt index 5c314e5..77cada2 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -v0.0.5 +v0.0.6 diff --git a/spec.json b/spec.json index 40af450..dfd7b0a 100644 --- a/spec.json +++ b/spec.json @@ -221,7 +221,8 @@ "ValidOutputFileType": { "enum": [ "obj", - "stl" + "stl", + "dae" ], "type": "string" }, diff --git a/types.go b/types.go index 65d26c9..eccfeee 100755 --- a/types.go +++ b/types.go @@ -110,6 +110,8 @@ const ( ValidOutputFileTypeObj ValidOutputFileType = "obj" // ValidOutputFileTypeStl represents the ValidOutputFileType `"stl"`. ValidOutputFileTypeStl ValidOutputFileType = "stl" + // ValidOutputFileTypeDae represents the ValidOutputFileType `"dae"`. + ValidOutputFileTypeDae ValidOutputFileType = "dae" ) // ValidSourceFileType is the type definition for a ValidSourceFileType. @@ -142,6 +144,7 @@ var FileConversionStatuses = []FileConversionStatus{ // ValidOutputFileTypes is the collection of all ValidOutputFileType values. var ValidOutputFileTypes = []ValidOutputFileType{ + ValidOutputFileTypeDae, ValidOutputFileTypeObj, ValidOutputFileTypeStl, }