Skip to content

Commit 23efbe1

Browse files
author
Frank Martinez
authored
Merge pull request #26 from fm-tibco/master
update descriptor & go.mod
2 parents 6109c38 + 99d0a43 commit 23efbe1

File tree

7 files changed

+28
-15
lines changed

7 files changed

+28
-15
lines changed

activity/aggregate/descriptor.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "flogo-aggregate",
33
"type": "flogo:activity",
4-
"version": "0.0.1",
4+
"version": "0.2.0",
55
"title": "Aggregate",
66
"description": "Simple Aggregate Activity",
77
"homepage": "https://github.com/project-flogo/stream/tree/master/activity/aggregate",

activity/aggregate/go.mod

+10-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,10 @@
1-
module github.com/project-flogo/stream/activity/aggregate
1+
module github.com/project-flogo/stream/activity/aggregate
2+
3+
go 1.12
4+
5+
require (
6+
github.com/pkg/errors v0.8.1 // indirect
7+
github.com/project-flogo/core v0.9.0
8+
github.com/project-flogo/stream v0.2.0
9+
github.com/stretchr/testify v1.3.0
10+
)

activity/filter/descriptor.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "flogo-filter",
33
"type": "flogo:activity",
4-
"version": "0.0.1",
4+
"version": "0.2.0",
55
"title": "Filter",
66
"description": "Simple Filter Activity",
77
"homepage": "https://github.com/project-flogo/stream/tree/master/activity/filter",

activity/filter/go.mod

+10-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,10 @@
1-
module github.com/project-flogo/stream/activity/filter
1+
module github.com/project-flogo/stream/activity/filter
2+
3+
go 1.12
4+
5+
require (
6+
github.com/pkg/errors v0.8.1 // indirect
7+
github.com/project-flogo/core v0.9.0
8+
github.com/project-flogo/stream v0.2.0
9+
github.com/stretchr/testify v1.3.0
10+
)

descriptor.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "stream",
33
"type": "flogo:action",
4-
"version": "0.0.1",
4+
"version": "0.2.0",
55
"title": "Flogo Stream",
66
"description": "Simple Stream Action",
77
"homepage": "https://github.com/project-flogo/stream/tree/master",

go.mod

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ module github.com/project-flogo/stream
22

33
require (
44
github.com/pkg/errors v0.8.1 // indirect
5-
github.com/project-flogo/core v0.9.0-rc.1
5+
github.com/project-flogo/core v0.9.0
66
github.com/stretchr/testify v1.3.0
7-
go.uber.org/atomic v1.3.2 // indirect
8-
go.uber.org/multierr v1.1.0 // indirect
97
)

go.sum

+4-7
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
1-
github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8=
21
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
3-
github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I=
42
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
53
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
64
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
7-
github.com/project-flogo/core v0.9.0-rc.1 h1:0dALJoxHI/T4Ao340cHfNg5Yf5uM/bT4Y7u+5UYXfIQ=
8-
github.com/project-flogo/core v0.9.0-rc.1/go.mod h1:dzmBbQfNNC0g0KClKYQxxGJLe53MHafg75Vhmw2TW8U=
9-
github.com/stretchr/objx v0.1.0 h1:4G4v2dO3VZwixGIRoQ5Lfboy6nUhCyYzaqnIAPPhYs4=
5+
github.com/project-flogo/core v0.9.0 h1:/iR4m5L0zj5SuqLtDDZIRyvrvG8TxwxdM0n8ZURo1I4=
6+
github.com/project-flogo/core v0.9.0/go.mod h1:QGWi7TDLlhGUaYH3n/16ImCuulbEHGADYEXyrcHhX7U=
107
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
118
github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q=
129
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
1310
github.com/xeipuuv/gojsonschema v1.1.0/go.mod h1:5yf86TLmAcydyeJq5YvxkGPE2fm/u4myDekKRoLuqhs=
14-
go.uber.org/atomic v1.3.2 h1:2Oa65PReHzfn29GpvgsYwloV9AVFHPDk8tYxt2c2tr4=
15-
go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
11+
go.uber.org/atomic v1.4.0 h1:cxzIVoETapQEqDhQu3QfnvXAV4AlzcvUCxkVUFw3+EU=
12+
go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
1613
go.uber.org/multierr v1.1.0 h1:HoEmRHQPVSqub6w2z2d2EOVs2fjyFRGyofhKuyDq0QI=
1714
go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0=
1815
go.uber.org/zap v1.9.1 h1:XCJQEf3W6eZaVwhRBof6ImoYGJSITeKWsyeh3HFu/5o=

0 commit comments

Comments
 (0)