Skip to content

Commit c115a36

Browse files
committed
bump the version
1 parent 7014c73 commit c115a36

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ dependencies {
2525
repositories {
2626
mavenCentral()
2727
}
28-
compile 'com.sothree.slidinguppanel:library:3.2.1'
28+
compile 'com.sothree.slidinguppanel:library:3.3.0'
2929
}
3030
```
3131

@@ -137,6 +137,10 @@ If you have an awesome pull request, send it over!
137137

138138
### Changelog
139139

140+
* 3.3.0
141+
* You can now set a `FadeOnClickListener`, for when the faded area of the main content is clicked.
142+
* `PanelSlideListener` has a new format (multiple of them can be set now
143+
* Fixed the setTouchEnabled bug
140144
* 3.2.1
141145
* Add support for `umanoScrollInterpolator`
142146
* Add support for percentage-based sliding panel height using `layout_weight` attribute

demo/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="com.sothree.slidinguppanel.demo"
4-
android:versionCode="14"
5-
android:versionName="3.2.1">
4+
android:versionCode="15"
5+
android:versionName="3.3.0">
66

77
<uses-sdk
88
android:minSdkVersion="11"

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
VERSION_NAME=3.2.1
2-
VERSION_CODE=14
1+
VERSION_NAME=3.3.0
2+
VERSION_CODE=15
33
GROUP=com.sothree.slidinguppanel
44

55
POM_DESCRIPTION=Android Sliding Up Panel Library

library/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="com.sothree.slidinguppanel.library"
4-
android:versionCode="14"
5-
android:versionName="3.2.1">
4+
android:versionCode="15"
5+
android:versionName="3.3.0">
66

77
<uses-sdk
88
android:minSdkVersion="8" />

0 commit comments

Comments
 (0)