Skip to content

Commit dcca0a0

Browse files
authored
Bump to version 2.0.0 (#24)
Signed-off-by: Xuanwo <github@xuanwo.io>
1 parent b885e07 commit dcca0a0

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,24 @@ 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+
## [v2.0.0] - 2021-01-17
9+
10+
### Added
11+
12+
- tests: Add integration tests (#17)
13+
- storage: Implement Fetcher (#19)
14+
- storage: Implement proposal Unify List Operation (#20)
15+
- *: Implement Segment API Redesign (#21)
16+
- storage: Implement proposal Object Mode (#22)
17+
18+
### Changed
19+
20+
- Migrate to go-storage v3 (#23)
21+
822
## v1.0.0 - 2020-11-12
923

1024
### Added
1125

12-
- Implement qingstor services.
26+
- Implement qingstor services.
27+
28+
[v2.0.0]: https://github.com/aos-dev/go-service-qingstor/compare/v1.0.0...v2.0.0

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/aos-dev/go-service-qingstor
1+
module github.com/aos-dev/go-service-qingstor/v2
22

33
go 1.14
44

tests/utils_test.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,12 @@ import (
66
"os"
77
"testing"
88

9-
"github.com/aos-dev/go-service-qingstor"
9+
1010
ps "github.com/aos-dev/go-storage/v3/pairs"
1111
"github.com/aos-dev/go-storage/v3/types"
1212
"github.com/google/uuid"
13+
14+
"github.com/aos-dev/go-service-qingstor/v2"
1315
)
1416

1517
func setupTest(t *testing.T) types.Storager {

0 commit comments

Comments
 (0)