This commit is contained in:
FAREAST\jiacfan 2019-01-08 17:36:29 +08:00
Родитель 040bea95b8
Коммит d93e19c84c
3 изменённых файлов: 7 добавлений и 4 удалений

Просмотреть файл

@ -2,6 +2,9 @@
> See [BreakingChanges](BreakingChanges.md) for a detailed list of API breaks.
## Version 0.4.1:
- Updated module settings.
## Version 0.4.0:
- [Breaking] Upgraded service version to 2018-03-28. Upgraded to latest protocol layer's models.
- [Breaking] Optimized error reporting and minimized panics. Removed most panics from the library. Several functions now return an error.

Просмотреть файл

@ -18,7 +18,7 @@ This repository contains the open source File SDK for Go.
* Dep: add ```github.com/Azure/azure-storage-file-go``` to Gopkg.toml:
```
[[constraint]]
version = "0.4.0"
version = "0.4.1"
name = "github.com/Azure/azure-storage-file-go"
```
* Module: simply import the SDK and Go will download it for you
@ -31,9 +31,9 @@ This repository contains the open source File SDK for Go.
| Service Version | Corresponding SDK Version | Import Path |
|-----------------|---------------------------|----------------------------------------------------------|
| 2017-07-29 | 0.3.0 | github.com/Azure/azure-storage-file-go/2017-07-29/azfile |
| 2018-03-28 | 0.4.0+ | github.com/Azure/azure-storage-file-go/azfile |
| 2018-03-28 | 0.4.1+ | github.com/Azure/azure-storage-file-go/azfile |
Note: the directory structure of the SDK has changed dramatically since 0.4.0. The different Service Versions are no longer sub-directories;
Note: the directory structure of the SDK has changed dramatically since 0.4.1. The different Service Versions are no longer sub-directories;
the latest `azfile` is directly under the root directory. In the future, each new Service Version will be introduced with a new major semantic version.

Просмотреть файл

@ -1,3 +1,3 @@
package azfile
const serviceLibVersion = "0.4.0"
const serviceLibVersion = "0.4.1"