Skip to content

Commit

Permalink
新增修改 v2.6.0 版本的文档
Browse files Browse the repository at this point in the history
  • Loading branch information
blinkfox committed Nov 20, 2021
1 parent f783c5d commit 19976d7
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# 🍹 版本更新记录 :id=title

## 🎿 v2.5.0 新增了 trimWhere 标签 🆕 (2021-05-07) :id=v250
## 🎣 v2.6.0 支持 Spring Data JPA 2.6.0 版本 🆕 (2021-11-21) :id=v260

- 支持最新的 Spring Data JPA 版本(`v2.6.0`),同时也能兼容之前的 Spring Data JPA 版本;

## 🎿 v2.5.0 新增了 trimWhere 标签 (2021-05-07) :id=v250

- 新增了 `trimWhere` 标签,用于完全替代之前的 `where` 标签,用于修复它的已知 [bug](https://github.com/blinkfox/fenix/issues/43),以前的 `where` 标签将继续保留但不再推荐使用;

Expand Down
2 changes: 1 addition & 1 deletion docs/_coverpage.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![logo](assets/images/logo.png)

# Fenix <small>2.5.0</small>
# Fenix <small>2.6.0</small>

> 为解决复杂动态 SQL 而生的 Spring Data JPA 扩展库
Expand Down
8 changes: 4 additions & 4 deletions docs/quick-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
<dependency>
<groupId>com.blinkfox</groupId>
<artifactId>fenix-spring-boot-starter</artifactId>
<version>2.5.0</version>
<version>2.6.0</version>
</dependency>
```

### 🌵 2. Gradle :id=spring-boot-gradle

```bash
compile 'com.blinkfox:fenix-spring-boot-starter:2.5.0'
compile 'com.blinkfox:fenix-spring-boot-starter:2.6.0'
```

### 🏕️ 3. 激活 Fenix (@EnableFenix) :id=enable-fenix
Expand Down Expand Up @@ -98,14 +98,14 @@ fenix:
<dependency>
<groupId>com.blinkfox</groupId>
<artifactId>fenix</artifactId>
<version>2.5.0</version>
<version>2.6.0</version>
</dependency>
```

### 🌻 2. Gradle :id=project-gradle

```bash
compile 'com.blinkfox:fenix:2.5.0'
compile 'com.blinkfox:fenix:2.6.0'
```

### 🏔️ 3. 激活 Fenix :id=project-enable-fenix
Expand Down

0 comments on commit 19976d7

Please sign in to comment.