Skip to content

Commit af4ebac

Browse files
author
chenenyu
committed
Release 1.3.3
1 parent fbc5573 commit af4ebac

File tree

3 files changed

+19
-12
lines changed

3 files changed

+19
-12
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 2018.01.30
2+
3+
`router: 1.3.3`:
4+
5+
1. fix: https://github.com/chenenyu/Router/pull/68
6+
17
## 2017.11.29
28

39
`router: 1.3.2`:

README.md

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,8 @@ Router.initialize(new Configuration.Builder()
4545
.build());
4646
```
4747

48-
2. 添加注解
4948

50-
```java
51-
// 这里添加了path和拦截器
52-
@Route(value = "test", interceptors = "SampleInterceptor")
53-
public class TestActivity extends AppCompatActivity {
54-
...
55-
}
56-
```
57-
58-
3. 添加拦截器
49+
2. 添加拦截器(可选)
5950

6051
```java
6152
@Interceptor("SampleInterceptor")
@@ -68,6 +59,16 @@ public class SampleInterceptor implements RouteInterceptor {
6859
}
6960
```
7061

62+
3. 添加注解
63+
64+
```java
65+
// 这里添加了path和拦截器(可选)
66+
@Route(value = "test", interceptors = "SampleInterceptor")
67+
public class TestActivity extends AppCompatActivity {
68+
...
69+
}
70+
```
71+
7172
4. 跳转
7273

7374
```java

VERSION.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# router library version
2-
ROUTER_VERSION=1.3.2
2+
ROUTER_VERSION=1.3.3
33
# compiler library version
4-
COMPILER_VERSION=1.3.2
4+
COMPILER_VERSION=1.3.3
55
# annotation library version
66
ANNOTATION_VERSION=0.3.0

0 commit comments

Comments
 (0)