Skip to content

Commit

Permalink
set version to 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
drakkan committed Feb 6, 2022
1 parent 0df9120 commit 412b2da
Show file tree
Hide file tree
Showing 6 changed files with 53 additions and 34 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
tags: 'v*'

env:
GO_VERSION: 1.17.5
GO_VERSION: 1.17.6

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion cmd/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
)

const (
version = "1.0.1-dev"
version = "1.0.2"
envPrefix = "SFTPGO_PLUGIN_EVENTSTORE_"
)

Expand Down
2 changes: 1 addition & 1 deletion db/migration/v2.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ type fsEventV2 struct {
FileSize int64 `gorm:"size:64"`
Status int `gorm:"size:32;index:idx_fs_events_status"`
Protocol string `gorm:"size:30;not null;index:idx_fs_events_protocol"`
SessionID string `gorm:"size:100;index:idx_fs_events_session_id"`
SessionID string `gorm:"size:100"`
IP string `gorm:"size:50;index:idx_ip"`
InstanceID string `gorm:"size:60;index:idx_fs_events_instance_id"`
}
Expand Down
2 changes: 1 addition & 1 deletion db/migration/v3.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ type fsEventV3 struct {
FileSize int64 `gorm:"size:64"`
Status int `gorm:"size:32;index:idx_fs_events_status"`
Protocol string `gorm:"size:30;not null;index:idx_fs_events_protocol"`
SessionID string `gorm:"size:100;index:idx_fs_events_session_id"`
SessionID string `gorm:"size:100"`
IP string `gorm:"size:50;index:idx_ip"`
FsProvider int `gorm:"size:32;index:idx_fs_provider"`
Bucket string `gorm:"size:512;index:idx_bucket"`
Expand Down
24 changes: 12 additions & 12 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,24 @@ go 1.17
require (
github.com/go-gormigrate/gormigrate/v2 v2.0.0
github.com/google/uuid v1.3.0
github.com/hashicorp/go-hclog v1.0.0
github.com/hashicorp/go-hclog v1.1.0
github.com/hashicorp/go-plugin v1.4.3
github.com/sftpgo/sdk v0.0.0-20220106101837-50e87c59705a
github.com/sftpgo/sdk v0.0.0-20220110174344-ecf586dd8941
github.com/stretchr/testify v1.7.0
github.com/urfave/cli/v2 v2.3.0
gorm.io/driver/mysql v1.2.2
gorm.io/driver/mysql v1.2.3
gorm.io/driver/postgres v1.2.3
gorm.io/gorm v1.22.4
gorm.io/gorm v1.22.5
)

require (
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/denisenkom/go-mssqldb v0.11.0 // indirect
github.com/denisenkom/go-mssqldb v0.12.0 // indirect
github.com/fatih/color v1.13.0 // indirect
github.com/go-sql-driver/mysql v1.6.0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/go-cmp v0.5.6 // indirect
github.com/google/go-cmp v0.5.7 // indirect
github.com/hashicorp/yamux v0.0.0-20211028200310-0bc27b27de87 // indirect
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
github.com/jackc/pgconn v1.10.1 // indirect
Expand All @@ -38,18 +38,18 @@ require (
github.com/lib/pq v1.10.4 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mattn/go-sqlite3 v1.14.10 // indirect
github.com/mattn/go-sqlite3 v1.14.11 // indirect
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
github.com/oklog/run v1.1.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3 // indirect
golang.org/x/net v0.0.0-20220105145211-5b0dc2dfae98 // indirect
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect
golang.org/x/crypto v0.0.0-20220131195533-30dcbda58838 // indirect
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
golang.org/x/sys v0.0.0-20220204135822-1c1b9b1eba6a // indirect
golang.org/x/text v0.3.7 // indirect
google.golang.org/genproto v0.0.0-20211223182754-3ac035c7e7cb // indirect
google.golang.org/grpc v1.43.0 // indirect
google.golang.org/genproto v0.0.0-20220204002441-d6cc3cc0770e // indirect
google.golang.org/grpc v1.44.0 // indirect
google.golang.org/protobuf v1.27.1 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
Expand Down
Loading

0 comments on commit 412b2da

Please sign in to comment.