File tree Expand file tree Collapse file tree 3 files changed +21
-3
lines changed
Expand file tree Collapse file tree 3 files changed +21
-3
lines changed Original file line number Diff line number Diff line change @@ -5,8 +5,24 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/ )
66and 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
Original file line number Diff line number Diff line change 1- module github.com/aos-dev/go-service-qingstor
1+ module github.com/aos-dev/go-service-qingstor/v2
22
33go 1.14
44
Original file line number Diff line number Diff 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
1517func setupTest (t * testing.T ) types.Storager {
You can’t perform that action at this time.
0 commit comments