mirror of
https://github.com/Luzifer/s3sync.git
synced 2024-12-20 03:21:16 +00:00
prepare release v2.0.0
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
627fe09bac
commit
5ecef07c67
4 changed files with 16 additions and 5 deletions
13
History.md
13
History.md
|
@ -1,3 +1,14 @@
|
|||
# 2.0.0 / 2023-06-09
|
||||
|
||||
**⚠ Breaking Changes:**
|
||||
- MD5 checksums are no longer used to check for file changes
|
||||
- Logging to stdout was dropped and log-format changed
|
||||
|
||||
**ℹ Changelog:**
|
||||
|
||||
* Breaking: Refactor, update deps, add MinIO support
|
||||
* Replace deprecated vendoring with Go modules support
|
||||
|
||||
# 1.3.0 / 2017-11-13
|
||||
|
||||
* Update dependencies, switch to dep for vendoring
|
||||
|
@ -58,4 +69,4 @@
|
|||
1.0.0 / 2015-07-26
|
||||
==================
|
||||
|
||||
* Initial version
|
||||
* Initial version
|
||||
|
|
4
LICENSE
4
LICENSE
|
@ -178,7 +178,7 @@
|
|||
APPENDIX: How to apply the Apache License to your work.
|
||||
|
||||
To apply the Apache License to your work, attach the following
|
||||
boilerplate notice, with the fields enclosed by brackets "{}"
|
||||
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||
replaced with your own identifying information. (Don't include
|
||||
the brackets!) The text should be enclosed in the appropriate
|
||||
comment syntax for the file format. We also recommend that a
|
||||
|
@ -186,7 +186,7 @@
|
|||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright 2017 Knut Ahlers <knut@ahlers.me>
|
||||
Copyright 2015- Knut Ahlers <knut@ahlers.me>
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
|
2
go.mod
2
go.mod
|
@ -1,4 +1,4 @@
|
|||
module github.com/Luzifer/s3sync
|
||||
module github.com/Luzifer/s3sync/v2
|
||||
|
||||
go 1.20
|
||||
|
||||
|
|
2
main.go
2
main.go
|
@ -10,7 +10,7 @@ import (
|
|||
"github.com/sirupsen/logrus"
|
||||
|
||||
"github.com/Luzifer/rconfig/v2"
|
||||
"github.com/Luzifer/s3sync/pkg/fsprovider"
|
||||
"github.com/Luzifer/s3sync/v2/pkg/fsprovider"
|
||||
)
|
||||
|
||||
var (
|
||||
|
|
Loading…
Reference in a new issue