Skip to content

Commit 44d7192

Browse files
authored
Merge pull request #104 from 1171736840/dev
Release 1.0.2
2 parents 9a7d054 + eabe3e8 commit 44d7192

File tree

11 files changed

+20
-10
lines changed

11 files changed

+20
-10
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ Amazon S3、GoogleCloud Storage、金山云 KS3、美团云 MSS、京东云 OSS
3232

3333
后续即将支持 Samba、NFS
3434

35+
`1.0.2` 修复了华为云 OBS 未加载的问题,查看 [更新记录](https://spring-file-storage.xuyanwu.cn/#/更新记录?id=102)
36+
<br />
3537
`1.0.1` 修复了 MultipartFile 无法正确获取文件名等问题,查看 [更新记录](https://spring-file-storage.xuyanwu.cn/#/更新记录?id=101)
3638
<br />
3739
`1.0.0` 包含了大量功能更新与问题修复,例如解决了内存占用过大问题,支持大文件上传、 [脱离 SpringBoot 单独使用](https://spring-file-storage.xuyanwu.cn/#/脱离SpringBoot单独使用) 等,AmazonS3 和 GoogleCloudStorage 存储平台配置名称与之前版本不兼容,查看 [更新记录](https://spring-file-storage.xuyanwu.cn/#/更新记录?id=100)

docs/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ Amazon S3、GoogleCloud Storage、金山云 KS3、美团云 MSS、京东云 OSS
3232

3333
后续即将支持 Samba、NFS
3434

35+
`1.0.2` 修复了华为云 OBS 未加载的问题,查看 [更新记录](更新记录?id=102)
36+
<br />
3537
`1.0.1` 修复了 MultipartFile 无法正确获取文件名等问题,查看 [更新记录](更新记录?id=101)
3638
<br />
3739
`1.0.0` 包含了大量功能更新与问题修复,例如解决了内存占用过大问题,支持大文件上传、 [脱离 SpringBoot 单独使用](脱离SpringBoot单独使用) 等,AmazonS3 和 GoogleCloudStorage 存储平台配置名称与之前版本不兼容,查看 [更新记录](更新记录?id=100)

docs/_navbar.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
* 文档版本 1.0.1
1+
* 文档版本 1.0.2
2+
* [1.0.2](https://spring-file-storage.xuyanwu.cn/1.0.2/)
23
* [1.0.1](https://spring-file-storage.xuyanwu.cn/1.0.1/)
34
* [1.0.0](https://spring-file-storage.xuyanwu.cn/1.0.0/)
45
* [0.7.0](https://spring-file-storage.xuyanwu.cn/0.7.0/)

docs/快速入门.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<dependency>
99
<groupId>cn.xuyanwu</groupId>
1010
<artifactId>spring-file-storage</artifactId>
11-
<version>1.0.1</version>
11+
<version>1.0.2</version>
1212
</dependency>
1313
```
1414

docs/更新记录.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# 更新记录
22

3+
## 1.0.2
4+
2023-08-08
5+
- 修复了华为云 OBS 未加载的问题
6+
37
## 1.0.1
48
2023-08-08
59
- 修复了 MultipartFileWrapperAdapter 无法正确获取文件名的问题

docs/脱离SpringBoot单独使用.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<dependency>
99
<groupId>cn.xuyanwu</groupId>
1010
<artifactId>file-storage-core</artifactId>
11-
<version>1.0.1</version>
11+
<version>1.0.2</version>
1212
</dependency>
1313
```
1414

file-storage-core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<parent>
66
<artifactId>spring-file-storage-parent</artifactId>
77
<groupId>cn.xuyanwu</groupId>
8-
<version>1.0.1</version>
8+
<version>1.0.2</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

1212
<artifactId>file-storage-core</artifactId>
13-
<version>1.0.1</version>
13+
<version>1.0.2</version>
1414

1515
<properties>
1616
<maven.compiler.source>8</maven.compiler.source>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>cn.xuyanwu</groupId>
88
<artifactId>spring-file-storage-parent</artifactId>
99
<packaging>pom</packaging>
10-
<version>1.0.1</version>
10+
<version>1.0.2</version>
1111

1212
<name>spring-file-storage-parent</name>
1313
<description>A File Storage Service</description>
@@ -63,7 +63,7 @@
6363
<dependency>
6464
<groupId>cn.xuyanwu</groupId>
6565
<artifactId>file-storage-core</artifactId>
66-
<version>1.0.1</version>
66+
<version>1.0.2</version>
6767
</dependency>
6868
<!-- Apache commons-pool2 -->
6969
<dependency>

spring-file-storage-test/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<groupId>cn.xuyanwu</groupId>
1414
<artifactId>spring-file-storage-test</artifactId>
15-
<version>1.0.1</version>
15+
<version>1.0.2</version>
1616
<name>spring-file-storage-test</name>
1717
<description>spring-file-storage 的测试和演示模块</description>
1818

@@ -145,7 +145,7 @@
145145
<dependency>
146146
<groupId>cn.xuyanwu</groupId>
147147
<artifactId>spring-file-storage</artifactId>
148-
<version>1.0.1</version>
148+
<version>1.0.2</version>
149149
</dependency>
150150

151151
<dependency>

spring-file-storage/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>spring-file-storage-parent</artifactId>
77
<groupId>cn.xuyanwu</groupId>
8-
<version>1.0.1</version>
8+
<version>1.0.2</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

0 commit comments

Comments
 (0)