From 0b9ccc0bf9f629df8a517821a0f5b5d337eb4c46 Mon Sep 17 00:00:00 2001 From: Ashutosh Bhide Date: Fri, 16 Dec 2022 11:07:06 +0530 Subject: [PATCH] Updated go.mod with updated go and core version --- go.mod | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index cb51eda..8ffa1ed 100644 --- a/go.mod +++ b/go.mod @@ -3,10 +3,21 @@ module github.com/project-flogo/cli require ( github.com/coreos/go-semver v0.2.0 github.com/msoap/byline v1.1.1 - github.com/pkg/errors v0.8.1 // indirect - github.com/project-flogo/core v0.9.5-beta.1 + github.com/project-flogo/core v1.6.3 github.com/spf13/cobra v0.0.5 github.com/stretchr/testify v1.4.0 ) -go 1.12 +require ( + github.com/araddon/dateparse v0.0.0-20190622164848-0fb0a474d195 // indirect + github.com/davecgh/go-spew v1.1.1 // indirect + github.com/inconshreveable/mousetrap v1.0.0 // indirect + github.com/pmezard/go-difflib v1.0.0 // indirect + github.com/spf13/pflag v1.0.3 // indirect + go.uber.org/atomic v1.6.0 // indirect + go.uber.org/multierr v1.5.0 // indirect + go.uber.org/zap v1.16.0 // indirect + gopkg.in/yaml.v2 v2.2.2 // indirect +) + +go 1.18