Skip to content

Commit

Permalink
1.0.42
Browse files Browse the repository at this point in the history
  • Loading branch information
江子健 committed Sep 27, 2018
1 parent a04deaa commit 9f3400d
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 4 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@

## [Unreleased]


## 1.0.42

- 在UriRequest中加入对是否跳过拦截器的控制
- 对应@RouterPage注解的Activity的启动,自动拼装PageAnnotationHandler.SCHEME_HOST和path

- 去掉ChainedAsyncHelper

## 1.0.41

第一个开源版本
- 第一个开源版本
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
![](docs/images/banner.png)

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

WMRouter是一款Android路由框架,基于组件化的设计思路,有功能灵活、使用简单的特点。
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
POM_NAME=waimai_android_router
POM_ARTIFACT_ID=router
POM_PACKAGING=aar
VERSION_NAME=1.0.41
VERSION_NAME=1.0.42
VERSION_CODE=1
GROUP=com.sankuai.waimai.router
SUPPORT_VERSION=26.0.2
Expand Down
16 changes: 16 additions & 0 deletions publish
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/usr/bin/env bash

# 发布到JCenter
# 用法:
# 1. 在local.properties中配置好bintray账号和apikey
# bintray.user=xxx
# bintray.apikey=xxxx
# 2. 更新gradle.properties中的版本号(否则可能会覆盖已发布版本!!!)
# 3. 将build.gradle - buildscript - dependencies中的
# classpath "com.sankuai.waimai.router:plugin:$VERSION_NAME"
# 改为一个已经发布的版本(否则后面发布时会编译不过)
# 4. 执行此脚本发布JCenter
# 5. 验证新版本,把build.gradle改回来
# 6. git打tag,更新文档(README、CHANGELOG),github编辑Release信息

./gradlew :interfaces:assemble :router:assemble :compiler:assemble :plugin:assemble :interfaces:bintrayUpload :router:bintrayUpload :compiler:bintrayUpload :plugin:bintrayUpload

0 comments on commit 9f3400d

Please sign in to comment.