Skip to content

Commit f2459e1

Browse files
committed
更新版本号1.2.1
1 parent 77c2b73 commit f2459e1

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,18 @@ TheRouter core functions have four functionalities:
2828

2929
|module| apt | router | plugin |
3030
|---|----------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------|
31-
|version| [![apt](https://img.shields.io/badge/apt-1.2.0-green)](https://repo1.maven.org/maven2/cn/therouter/apt/) | [![router](https://img.shields.io/badge/router-1.2.0-green)](https://repo1.maven.org/maven2/cn/therouter/router/) | [![plugin](https://img.shields.io/badge/plugin-1.2.0-green)](https://repo1.maven.org/maven2/cn/therouter/plugin/) |
31+
|version| [![apt](https://img.shields.io/badge/apt-1.2.1-green)](https://repo1.maven.org/maven2/cn/therouter/apt/) | [![router](https://img.shields.io/badge/router-1.2.1-green)](https://repo1.maven.org/maven2/cn/therouter/router/) | [![plugin](https://img.shields.io/badge/plugin-1.2.1-green)](https://repo1.maven.org/maven2/cn/therouter/plugin/) |
3232

3333
```
3434
// root build.gradle
35-
classpath 'cn.therouter:plugin:1.2.0'
35+
classpath 'cn.therouter:plugin:1.2.1'
3636
3737
// app module
3838
apply plugin: 'therouter'
3939
4040
// dependencies
41-
kapt "cn.therouter:apt:1.2.0"
42-
implementation "cn.therouter:router:1.2.0"
41+
kapt "cn.therouter:apt:1.2.1"
42+
implementation "cn.therouter:router:1.2.1"
4343
```
4444

4545
#### B2. initialization library

README_CN.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,20 @@ TheRouter 具备四大能力:
2626

2727
#### 2.1 Gradle 引入
2828

29-
|module| apt | router | plugin |
30-
|---|---------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|
31-
|version| [![apt](https://img.shields.io/badge/apt-1.2.0-green)](https://repo1.maven.org/maven2/cn/therouter/apt) | [![router](https://img.shields.io/badge/router-1.2.0-green)](https://repo1.maven.org/maven2/cn/therouter/router) | [![plugin](https://img.shields.io/badge/plugin-1.2.0-green)](https://repo1.maven.org/maven2/cn/therouter/plugin) |
29+
|module| apt | router | plugin |
30+
|---|---------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------|
31+
|version| [![apt](https://img.shields.io/badge/apt-1.2.1-green)](https://repo1.maven.org/maven2/cn/therouter/apt) | [![router](https://img.shields.io/badge/router-1.2.1-green)](https://repo1.maven.org/maven2/cn/therouter/router) | [![plugin](https://img.shields.io/badge/plugin-1.2.1-green)](https://repo1.maven.org/maven2/cn/therouter/plugin) |
3232

3333
```
3434
// 项目根目录 build.gradle 引入
35-
classpath 'cn.therouter:plugin:1.2.0'
35+
classpath 'cn.therouter:plugin:1.2.1'
3636
3737
// app module 中引入
3838
apply plugin: 'therouter'
3939
4040
// 依赖,所有使用了注解的模块都要添加
41-
kapt "cn.therouter:apt:1.2.0"
42-
implementation "cn.therouter:router:1.2.0"
41+
kapt "cn.therouter:apt:1.2.1"
42+
implementation "cn.therouter:router:1.2.1"
4343
```
4444

4545
#### 2.2 初始化

agp8-project/plugin/src/main/groovy/com/therouter/plugin/BuildConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.therouter.plugin;
22

33
public final class BuildConfig {
4-
public static final String VERSION = "1.2.0";
4+
public static final String VERSION = "1.2.1";
55
public static final String NAME = "plugin-agp8";
66

77
private BuildConfig() {

apt/src/main/java/com/therouter/apt/BuildConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.therouter.apt;
22

33
public final class BuildConfig {
4-
public static final String VERSION = "1.2.0";
4+
public static final String VERSION = "1.2.1";
55
public static final String NAME = "apt";
66

77
public static final boolean DEBUG = false;

plugin/src/main/groovy/com/therouter/plugin/BuildConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.therouter.plugin;
22

33
public final class BuildConfig {
4-
public static final String VERSION = "1.2.0";
4+
public static final String VERSION = "1.2.1";
55
public static final String NAME = "plugin";
66

77
private BuildConfig() {

0 commit comments

Comments
 (0)