Skip to content

Commit

Permalink
upgrade graphik v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
autom8ter committed Dec 29, 2020
1 parent 2bcb330 commit e197233
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.7
current_version = 0.1.0
commit = False
tag = False

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version := "0.0.7"
version := "0.1.0"

.DEFAULT_GOAL := help

Expand Down
2 changes: 0 additions & 2 deletions cmd/graph/stream.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import (
func init() {
Stream.Flags().StringVar(&channel, "channel", "", "the channel to publish a message to")
Stream.Flags().StringVar(&expression, "expression", "", "CEL expression to filter streamed messages")
Stream.Flags().DurationVar(&rewind, "rewind", 0, "rewind time to capture historical messages (ex: 5m)")

}

Expand All @@ -29,7 +28,6 @@ var Stream = &cobra.Command{
if err := client.Stream(context.Background(), &apipb.StreamFilter{
Channel: channel,
Expression: expression,
Rewind: rewind.String(),
}, func(msg *apipb.Message) bool {
fmt.Println(protojson.Format(msg))
return true
Expand Down
3 changes: 0 additions & 3 deletions cmd/graph/variables.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package graph

import "time"

var (
gtype string
gid string
Expand All @@ -23,5 +21,4 @@ var (
algorithm string
maxDepth int
maxHops int
rewind time.Duration
)
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.15
require (
github.com/golang/protobuf v1.4.3
github.com/google/uuid v1.1.2
github.com/graphikDB/graphik v0.13.3
github.com/graphikDB/graphik v1.0.0
github.com/mitchellh/go-homedir v1.1.0
github.com/pkg/errors v0.9.1
github.com/shurcooL/graphql v0.0.0-20200928012149-18c5c3165e3a // indirect
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,8 @@ github.com/graphikDB/graphik v0.13.1 h1:HoKADMvrep/XnuobsYfMGD6nh5yliZeeQRtR/qCI
github.com/graphikDB/graphik v0.13.1/go.mod h1:PkgMXjsc1NozbbX9SOlWHwuh13g0GVAg1Ld094aRyzU=
github.com/graphikDB/graphik v0.13.3 h1:rjdSt1+i25puXqtuNOfqKM2B9lUwNvCHzsa1IJxNsj4=
github.com/graphikDB/graphik v0.13.3/go.mod h1:PkgMXjsc1NozbbX9SOlWHwuh13g0GVAg1Ld094aRyzU=
github.com/graphikDB/graphik v1.0.0 h1:25Og+A7bEK8ONDiryo4aRaixX+sGNePD6dMmscrdTt4=
github.com/graphikDB/graphik v1.0.0/go.mod h1:PkgMXjsc1NozbbX9SOlWHwuh13g0GVAg1Ld094aRyzU=
github.com/graphikDB/raft v0.0.0/go.mod h1:WIylhU9T0j6k0Ynh8RMb2PCvUYehlgCrTCTCusMLO6g=
github.com/graphikDB/trigger v0.0.13/go.mod h1:RZn4pNk7i0xbur4PBtRR8L1IJedr1ll/mymrwY2M4dQ=
github.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs=
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package version

const Version = "0.0.7"
const Version = "0.1.0"

0 comments on commit e197233

Please sign in to comment.