File tree Expand file tree Collapse file tree 4 files changed +23
-4
lines changed
Expand file tree Collapse file tree 4 files changed +23
-4
lines changed Original file line number Diff line number Diff line change 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+ - 第一个开源版本
Original file line number Diff line number Diff line change 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
88WMRouter是一款Android路由框架,基于组件化的设计思路,有功能灵活、使用简单的特点。
Original file line number Diff line number Diff line change 11POM_NAME =waimai_android_router
22POM_ARTIFACT_ID =router
33POM_PACKAGING =aar
4- VERSION_NAME =1.0.41
4+ VERSION_NAME =1.0.42
55VERSION_CODE =1
66GROUP =com.sankuai.waimai.router
77SUPPORT_VERSION =26.0.2
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments