Skip to content

Commit 34bd7ca

Browse files
committed
🔖 发布 2.3.7
1 parent cabfc20 commit 34bd7ca

File tree

11 files changed

+31
-20
lines changed

11 files changed

+31
-20
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ ps: 虽然我知道,大部分人都是来了**直接下载源代码**后就潇
5454
# 功能简介
5555

5656
- **Docker一键部署**:支持 Docker 的方式一键启动服务
57-
- **广告位管理**:支持五种广告位:首页开屏广告、侧边栏顶部、侧边栏底部、文章详情底部、评论框顶部,站长可以随时随意更换自己的广告链接,赚外快不成问题!
57+
- **广告位管理**:支持五种广告位:首页开屏广告、侧边栏顶部、侧边栏底部、文章详情底部、评论框顶部、文章详情页顶部、**文章详情内,站长可以随时随意更换自己的广告链接,赚外快不成问题!
5858
- **多种编辑器**:支持 wangEditor、Markdown 和 TinyMCE 等多种文章编辑器,可以自行选择
5959
- **自动申请友情链接**:在线申请友情链接,无需站长手动配置,只需申请方添加完站长的连接后自行申请即可
6060
- **百度推送**:支持百度推送功能,加速百度搜索引擎收录博文

blog-admin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>com.zyd</groupId>
1414
<artifactId>blog</artifactId>
15-
<version>2.3.6</version>
15+
<version>2.3.7</version>
1616
</parent>
1717

1818
<dependencies>

blog-codegen/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>com.zyd</groupId>
1414
<artifactId>blog</artifactId>
15-
<version>2.3.6</version>
15+
<version>2.3.7</version>
1616
</parent>
1717

1818
<dependencies>

blog-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>com.zyd</groupId>
1414
<artifactId>blog</artifactId>
15-
<version>2.3.6</version>
15+
<version>2.3.7</version>
1616
</parent>
1717

1818
<dependencies>

blog-file/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>com.zyd</groupId>
1414
<artifactId>blog</artifactId>
15-
<version>2.3.6</version>
15+
<version>2.3.7</version>
1616
</parent>
1717

1818
<properties>

blog-web/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>com.zyd</groupId>
1414
<artifactId>blog</artifactId>
15-
<version>2.3.6</version>
15+
<version>2.3.7</version>
1616
</parent>
1717

1818
<dependencies>

docs/bin/deploy-docker.sh

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,19 @@ if [ "$version" ]; then
1212
echo ">> 当前版本已更正为:$current_version"
1313
fi
1414

15-
cd $pwd/blog-admin/ || exit
16-
docker build -t justauth/blog-admin:v${current_version} .
17-
docker push justauth/blog-admin:v${current_version}
15+
read -p '是否需要重新构建 blog-admin?[y/n]' repeat
16+
if [ "${repeat}" = "y" -o "${repeat}" = "Y" ];then
17+
cd $pwd/blog-admin/ || exit
18+
docker build -t justauth/blog-admin:v${current_version} .
19+
docker push justauth/blog-admin:v${current_version}
20+
fi
1821

19-
cd $pwd/blog-web/ || exit
20-
docker build -t justauth/blog-web:v${current_version} .
21-
docker push justauth/blog-web:v${current_version}
22+
read -p '是否需要重新构建 blog-web?[y/n]' repeat
23+
if [ "${repeat}" = "y" -o "${repeat}" = "Y" ];then
24+
cd $pwd/blog-web/ || exit
25+
docker build -t justauth/blog-web:v${current_version} .
26+
docker push justauth/blog-web:v${current_version}
27+
fi
2228

2329
read -p '是否需要重新构建 blog-mysql?[y/n]' repeat
2430
if [ "${repeat}" = "y" -o "${repeat}" = "Y" ];then

docs/bin/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.3.5
1+
2.3.7

docs/docker/mysql/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# FROM mysql:8.0.20
21
FROM mysql:5.7
32

43
MAINTAINER yadong.zhang0415@gmail.com

pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.zyd</groupId>
77
<artifactId>blog</artifactId>
8-
<version>2.3.6</version>
8+
<version>2.3.7</version>
99
<packaging>pom</packaging>
1010
<modules>
1111
<module>blog-core</module>
@@ -58,27 +58,27 @@
5858
<dependency>
5959
<groupId>com.zyd</groupId>
6060
<artifactId>blog-core</artifactId>
61-
<version>2.3.6</version>
61+
<version>2.3.7</version>
6262
</dependency>
6363
<dependency>
6464
<groupId>com.zyd</groupId>
6565
<artifactId>blog-admin</artifactId>
66-
<version>2.3.6</version>
66+
<version>2.3.7</version>
6767
</dependency>
6868
<dependency>
6969
<groupId>com.zyd</groupId>
7070
<artifactId>blog-web</artifactId>
71-
<version>2.3.6</version>
71+
<version>2.3.7</version>
7272
</dependency>
7373
<dependency>
7474
<groupId>com.zyd</groupId>
7575
<artifactId>blog-file</artifactId>
76-
<version>2.3.6</version>
76+
<version>2.3.7</version>
7777
</dependency>
7878
<dependency>
7979
<groupId>com.zyd</groupId>
8080
<artifactId>blog-codegen</artifactId>
81-
<version>2.3.6</version>
81+
<version>2.3.7</version>
8282
</dependency>
8383
</dependencies>
8484
</dependencyManagement>

0 commit comments

Comments
 (0)