Skip to content

Commit

Permalink
fix #148, release 1.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
liaohuqiu committed Sep 19, 2015
1 parent ab9b4fc commit f543f0b
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 deletions.
12 changes: 6 additions & 6 deletions README-cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Github: https://github.com/liaohuqiu

项目已经发布到了Maven中央库,包括`aar``apklib`两种格式。在Maven或者Gradle下可如下直接引入:

最新版版本号: `1.0.10`, 发布到了: https://oss.sonatype.org/content/repositories/snapshots
最新版版本号: `1.0.11`, 发布到了: https://oss.sonatype.org/content/repositories/snapshots

在gradle中:

Expand All @@ -75,7 +75,7 @@ maven {
}
```

稳定版: `1.0.10`, https://oss.sonatype.org/content/repositories/releases, in gradle:
稳定版: `1.0.11`, https://oss.sonatype.org/content/repositories/releases, in gradle:

```
mavenCentral()
Expand All @@ -92,7 +92,7 @@ mavenCentral()
<type>aar</type>
<!-- or apklib format, if you want -->
<!-- <type>apklib</type> -->
<version>1.0.10</version>
<version>1.0.11</version>
</dependency>

稳定版
Expand All @@ -104,20 +104,20 @@ mavenCentral()
<type>aar</type>
<!-- or apklib format, if you want -->
<!-- <type>apklib</type> -->
<version>1.0.10</version>
<version>1.0.11</version>
</dependency>
```

gradle / Android Studio, 最新版

```
compile 'in.srain.cube:ultra-ptr:1.0.10'
compile 'in.srain.cube:ultra-ptr:1.0.11'
```

gradle / Android Studio, 稳定版

```
compile 'in.srain.cube:ultra-ptr:1.0.10'
compile 'in.srain.cube:ultra-ptr:1.0.11'
```

#### 配置
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,15 +64,15 @@ Support `API LEVEL >= 8`, all snapshots are taken from Genymotion, 2.3.7.

This project has been pushed to Maven Central, both in `aar` and `apklib`.

The latest version: `1.0.10`, has been published to: https://oss.sonatype.org/content/repositories/snapshots, in gradle:
The latest version: `1.0.11`, has been published to: https://oss.sonatype.org/content/repositories/snapshots, in gradle:

```
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots'
}
```

The stable version: `1.0.10`, https://oss.sonatype.org/content/repositories/releases, in gradle:
The stable version: `1.0.11`, https://oss.sonatype.org/content/repositories/releases, in gradle:

```
mavenCentral()
Expand All @@ -87,7 +87,7 @@ pom.xml, latest version:
<type>aar</type>
<!-- or apklib format, if you want -->
<!-- <type>apklib</type> -->
<version>1.0.10</version>
<version>1.0.11</version>
</dependency>
```

Expand All @@ -100,20 +100,20 @@ pom.xml, stable version:
<type>aar</type>
<!-- or apklib format, if you want -->
<!-- <type>apklib</type> -->
<version>1.0.10</version>
<version>1.0.11</version>
</dependency>
```

gradle, latest version:

```
compile 'in.srain.cube:ultra-ptr:1.0.10'
compile 'in.srain.cube:ultra-ptr:1.0.11'
```

gradle, stable version:

```
compile 'in.srain.cube:ultra-ptr:1.0.10'
compile 'in.srain.cube:ultra-ptr:1.0.11'
```

#### Config
Expand Down
2 changes: 1 addition & 1 deletion ptr-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<groupId>in.srain.cube</groupId>
<artifactId>ultra-ptr</artifactId>
<type>aar</type>
<version>1.0.10</version>
<version>1.0.11</version>
</dependency>
<dependency>
<groupId>in.srain.cube</groupId>
Expand Down
2 changes: 1 addition & 1 deletion ptr-lib/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=1.0.10
VERSION_NAME=1.0.11

POM_GROUP=in.srain.cube
POM_ARTIFACT_ID=ultra-ptr
Expand Down
2 changes: 1 addition & 1 deletion ptr-lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<artifactId>ultra-ptr</artifactId>
<packaging>aar</packaging>
<name>Ultra Pull to Refresh</name>
<version>1.0.10</version>
<version>1.0.11</version>

<description>Ultra Pull to Refresh in Android</description>
<url>https://github.com/liaohuqiu/android-Ultra-Pull-To-Refresh</url>
Expand Down
4 changes: 2 additions & 2 deletions update-project.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
vars = {
'ptr_lib_version': '1.0.10',
'ptr_lib_stable_version': '1.0.10',
'ptr_lib_version': '1.0.11',
'ptr_lib_stable_version': '1.0.11',
'cube_sdk_version': '1.0.44.39-SNAPSHOT'
}

Expand Down

0 comments on commit f543f0b

Please sign in to comment.