Skip to content

Commit cf44ec1

Browse files
author
Dominik Schürmann
committed
Version 3.0
1 parent d9932ee commit cf44ec1

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

HtmlTextView/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ android {
88
defaultConfig {
99
minSdkVersion 7
1010
targetSdkVersion 25
11-
versionCode 8
12-
versionName '2.0'
11+
versionCode 9
12+
versionName '3.0'
1313
}
1414
}
1515

1616
publish {
1717
userOrg = 'sufficientlysecure'
1818
groupId = 'org.sufficientlysecure'
1919
artifactId = 'html-textview'
20-
version = '2.0'
20+
version = '3.0'
2121
description = 'HtmlTextView is an extended TextView component for Android, which can load HTML and converts it into Spannable for displaying it.'
2222
website = 'https://github.com/sufficientlysecure/html-textview'
2323
}

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ repositories {
1818
}
1919
2020
dependencies {
21-
compile 'org.sufficientlysecure:html-textview:2.0'
21+
compile 'org.sufficientlysecure:html-textview:3.0'
2222
}
2323
```
2424

@@ -120,6 +120,14 @@ We recognize the standard table tags:
120120

121121
as well as the tags extended by HtmlTextView. However, support doesn’t currently extend to tags natively supported by Android (e.g. ``<b>``, ``<big>``, ``<h1>``) which means tables will not include the extra styling.
122122

123+
### Changelog
124+
#### 3.0
125+
* Removed deprecated methods and classes
126+
* Fix out of bounds issue
127+
128+
#### 2.0
129+
* Introduce better API
130+
123131
## License
124132
Apache License v2
125133

0 commit comments

Comments
 (0)