Skip to content

Commit

Permalink
v3.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
troyzhxu committed May 11, 2022
1 parent 0e88538 commit d09f131
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ Bean Searcher can work with any JavaWeb frameworks, such as: SpringBoot, SpringM
All you need is to add a dependence:

```groovy
implementation 'com.ejlchina:bean-searcher-boot-stater:3.6.1'
implementation 'com.ejlchina:bean-searcher-boot-stater:3.6.2'
```

and then you can inject `Searcher` into a `Controller` or `Service`:
Expand All @@ -239,7 +239,7 @@ private BeanSearcher beanSearcher;
Adding this dependence:

```groovy
implementation 'com.ejlchina:bean-searcher:3.6.1'
implementation 'com.ejlchina:bean-searcher:3.6.2'
```

then you can build a `Searcher` with `SearcherBuilder`:
Expand Down
4 changes: 2 additions & 2 deletions README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ List<User> users = beanSearcher.searchList(User.class, params);
#### Spring Boot 项目,添加依赖即集成完毕:

```groovy
implementation 'com.ejlchina:bean-searcher-boot-stater:3.6.1'
implementation 'com.ejlchina:bean-searcher-boot-stater:3.6.2'
```

接着便可在 `Controller``Service` 里注入检索器:
Expand All @@ -230,7 +230,7 @@ private BeanSearcher beanSearcher;
#### 其它框架,使用如下依赖:

```groovy
implementation 'com.ejlchina:bean-searcher:3.6.1'
implementation 'com.ejlchina:bean-searcher:3.6.2'
```

然后可以使用 `SearcherBuilder` 构建一个检索器:
Expand Down
2 changes: 1 addition & 1 deletion bean-searcher-boot-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>com.ejlchina</groupId>
<artifactId>bean-searcher-parent</artifactId>
<version>3.6.1</version>
<version>3.6.2</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion bean-searcher/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>com.ejlchina</groupId>
<artifactId>bean-searcher-parent</artifactId>
<version>3.6.1</version>
<version>3.6.2</version>
</parent>

<dependencies>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<groupId>com.ejlchina</groupId>
<artifactId>bean-searcher-parent</artifactId>
<version>3.6.1</version>
<version>3.6.2</version>

<packaging>pom</packaging>

Expand Down Expand Up @@ -45,7 +45,7 @@
<connection>scm:git:https://github.com/ejlchina/bean-searcher.git</connection>
<developerConnection>scm:git:https://github.com/ejlchina/bean-searcher.git</developerConnection>
<url>https://github.com/ejlchina/bean-searcher</url>
<tag>v3.6.1</tag>
<tag>v3.6.2</tag>
</scm>

<dependencies>
Expand Down

0 comments on commit d09f131

Please sign in to comment.