back to development
This commit is contained in:
parent
8d4f40ccd2
commit
80d695f3a2
3 changed files with 17 additions and 1 deletions
|
@ -188,6 +188,10 @@ SFTPGo can easily saturate a Gigabit connection on low end hardware with no spec
|
||||||
|
|
||||||
More in-depth analysis of performance can be found [here](./docs/performance.md).
|
More in-depth analysis of performance can be found [here](./docs/performance.md).
|
||||||
|
|
||||||
|
## Release Cadence
|
||||||
|
|
||||||
|
SFTPGo releases are feature-driven, we don't have a fixed time based schedule. As a rough estimate, you can expect 1 or 2 new releases per year.
|
||||||
|
|
||||||
## Acknowledgements
|
## Acknowledgements
|
||||||
|
|
||||||
SFTPGo makes use of the third party libraries listed inside [go.mod](./go.mod).
|
SFTPGo makes use of the third party libraries listed inside [go.mod](./go.mod).
|
||||||
|
|
12
SECURITY.md
Normal file
12
SECURITY.md
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
# Security Policy
|
||||||
|
|
||||||
|
## Supported Versions
|
||||||
|
|
||||||
|
Only the current release of the software is actively supported. If you need
|
||||||
|
help backporting fixes into an older release, feel free to ask.
|
||||||
|
|
||||||
|
## Reporting a Vulnerability
|
||||||
|
|
||||||
|
Email your vulnerability information to SFTPGo's maintainer:
|
||||||
|
|
||||||
|
Nicola Murino <nicola.murino@gmail.com>
|
|
@ -2,7 +2,7 @@ package version
|
||||||
|
|
||||||
import "strings"
|
import "strings"
|
||||||
|
|
||||||
const version = "1.1.0"
|
const version = "1.1.0-dev"
|
||||||
|
|
||||||
var (
|
var (
|
||||||
commit = ""
|
commit = ""
|
||||||
|
|
Loading…
Reference in a new issue