Skip to content

Commit 9f3400d

Browse files
author
江子健
committed
1.0.42
1 parent a04deaa commit 9f3400d

File tree

4 files changed

+23
-4
lines changed

4 files changed

+23
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,13 @@
22

33
## [Unreleased]
44

5+
6+
## 1.0.42
7+
58
- 在UriRequest中加入对是否跳过拦截器的控制
69
- 对应@RouterPage注解的Activity的启动,自动拼装PageAnnotationHandler.SCHEME_HOST和path
7-
10+
- 去掉ChainedAsyncHelper
811

912
## 1.0.41
1013

11-
第一个开源版本
14+
- 第一个开源版本

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
![](docs/images/banner.png)
33

44
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://raw.githubusercontent.com/meituan/WMRouter/master/LICENSE)
5-
[![Release Version](https://img.shields.io/badge/release-1.0.41-red.svg)](https://github.com/meituan/WMRouter/releases)
5+
[![Release Version](https://img.shields.io/badge/release-1.0.42-red.svg)](https://github.com/meituan/WMRouter/releases)
66
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/meituan/WMRouter/pulls)
77

88
WMRouter是一款Android路由框架,基于组件化的设计思路,有功能灵活、使用简单的特点。

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
POM_NAME=waimai_android_router
22
POM_ARTIFACT_ID=router
33
POM_PACKAGING=aar
4-
VERSION_NAME=1.0.41
4+
VERSION_NAME=1.0.42
55
VERSION_CODE=1
66
GROUP=com.sankuai.waimai.router
77
SUPPORT_VERSION=26.0.2

publish

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env bash
2+
3+
# 发布到JCenter
4+
# 用法:
5+
# 1. 在local.properties中配置好bintray账号和apikey
6+
# bintray.user=xxx
7+
# bintray.apikey=xxxx
8+
# 2. 更新gradle.properties中的版本号(否则可能会覆盖已发布版本!!!)
9+
# 3. 将build.gradle - buildscript - dependencies中的
10+
# classpath "com.sankuai.waimai.router:plugin:$VERSION_NAME"
11+
# 改为一个已经发布的版本(否则后面发布时会编译不过)
12+
# 4. 执行此脚本发布JCenter
13+
# 5. 验证新版本,把build.gradle改回来
14+
# 6. git打tag,更新文档(README、CHANGELOG),github编辑Release信息
15+
16+
./gradlew :interfaces:assemble :router:assemble :compiler:assemble :plugin:assemble :interfaces:bintrayUpload :router:bintrayUpload :compiler:bintrayUpload :plugin:bintrayUpload

0 commit comments

Comments
 (0)