Skip to content
This repository was archived by the owner on Oct 22, 2021. It is now read-only.

Commit f8cf08b

Browse files
authored
Bump to version 3.0.0 (#43)
1 parent 52b259b commit f8cf08b

File tree

5 files changed

+30
-6
lines changed

5 files changed

+30
-6
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](https://semver.org/).
77

8+
## [v3.0.0] - 2021-05-24
9+
10+
### Added
11+
12+
- storage: Implement GSP-49 Add CreateDir Operation (#39)
13+
- *: Implement GSP-47 & GSP-51 (#40)
14+
- storage: Implement GSP-61 Add object mode check for operations (#41)
15+
16+
### Changed
17+
18+
- storage: Idempotent storager delete operation (#38)
19+
- *: Implement GSP-73 Organization rename (#42)
20+
821
## [v2.1.0] - 2021-04-24
922

1023
### Added
@@ -37,5 +50,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
3750

3851
- Implement fs services.
3952

53+
[v3.0.0]: https://github.com/beyondstorage/go-service-fs/compare/v2.1.0...v3.0.0
4054
[v2.1.0]: https://github.com/beyondstorage/go-service-fs/compare/v2.0.0...v2.1.0
4155
[v2.0.0]: https://github.com/beyondstorage/go-service-fs/compare/v1.0.0...v2.0.0

generated.go

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ module github.com/beyondstorage/go-service-fs/v3
33
go 1.15
44

55
require (
6-
github.com/beyondstorage/go-integration-test/v4 v4.0.0-20210521062555-83f8f166943f
7-
github.com/beyondstorage/go-storage/v4 v4.0.0-20210521045436-248353dfc077
6+
github.com/beyondstorage/go-integration-test/v4 v4.0.0
7+
github.com/beyondstorage/go-storage/v4 v4.0.0
88
github.com/qingstor/go-mime v0.1.0
99
github.com/stretchr/testify v1.7.0
1010
golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7

go.sum

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
github.com/Xuanwo/templateutils v0.1.0 h1:WpkWOqQtIQ2vAIpJLa727DdN8WtxhUkkbDGa6UhntJY=
22
github.com/Xuanwo/templateutils v0.1.0/go.mod h1:OdE0DJ+CJxDBq6psX5DPV+gOZi8bhuHuVUpPCG++Wb8=
3-
github.com/beyondstorage/go-integration-test/v4 v4.0.0-20210521062555-83f8f166943f h1:2a44nxIWm5DgEb6/gnD3We/32Bx19ET0iOM4+mxOmp8=
4-
github.com/beyondstorage/go-integration-test/v4 v4.0.0-20210521062555-83f8f166943f/go.mod h1:PUhp+CDYnsysCKVU7poqIK7ZWTfADkOu2Z/PjlSIhsY=
5-
github.com/beyondstorage/go-storage/v4 v4.0.0-20210521045436-248353dfc077 h1:BxqrLLELv6ZvP4+DZlwPAwBhNYkQqpZFvujvUT8zGiY=
6-
github.com/beyondstorage/go-storage/v4 v4.0.0-20210521045436-248353dfc077/go.mod h1:oa2dYco+xplPj99WSBnYVw/xXvRkIKWSSVDQKNZ5Kz8=
3+
github.com/beyondstorage/go-integration-test/v4 v4.0.0 h1:tdXQV9yxQ3Q6p9xfyQKzK3MEo9r9j9g3uT5+3sbVtnQ=
4+
github.com/beyondstorage/go-integration-test/v4 v4.0.0/go.mod h1:26/JF4b0XxRN0pL4kihpnVNhbbw+QWvmmvgxfnFJDfA=
5+
github.com/beyondstorage/go-storage/v4 v4.0.0 h1:yg3/XFEIuf207Y/kb/Gh1E46imphE2EtsKk+x7wrxIM=
6+
github.com/beyondstorage/go-storage/v4 v4.0.0/go.mod h1:oa2dYco+xplPj99WSBnYVw/xXvRkIKWSSVDQKNZ5Kz8=
77
github.com/beyondstorage/specs/go v0.0.0-20210521044836-3d41c1d9c97f h1:KMXKB/LACUmnOfLfjND8222qtzWT9lWRUdsPOlM4FqE=
88
github.com/beyondstorage/specs/go v0.0.0-20210521044836-3d41c1d9c97f/go.mod h1:f5VvmLHc/dNJwl+/yAv/TOHdev3phvuEswx8DIXiSQQ=
99
github.com/dave/dst v0.26.2 h1:lnxLAKI3tx7MgLNVDirFCsDTlTG9nKTk7GcptKcWSwY=

utils.go

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ type Storage struct {
3434
typ.UnimplementedMover
3535
typ.UnimplementedFetcher
3636
typ.UnimplementedAppender
37+
typ.UnimplementedDirer
3738
}
3839

3940
// String implements Storager.String

0 commit comments

Comments
 (0)