Skip to content

Commit 434de8f

Browse files
committed
Release 1.0.0
1 parent 2648752 commit 434de8f

6 files changed

Lines changed: 15 additions & 6 deletions

File tree

.github/workflows/prepare_mkdocs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ title_markdown_file() {
3030
}
3131

3232
set +x
33-
for MARKDOWN_FILE in $(find docs/0.x/ -name '*.md'); do
33+
for MARKDOWN_FILE in $(find docs/1.x/ -name '*.md'); do
3434
echo $MARKDOWN_FILE
3535
title_markdown_file $MARKDOWN_FILE
3636
done

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ sonar-reports
181181

182182
# Dokka/MkDocs
183183
site/
184-
docs/0.x
184+
docs/1.x
185185
docs/changelog.md
186186
docs/upgrading.md
187187
docs/contributing.md

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# CHANGELOG
22

3+
## 1.0.0
4+
_2020-07-29_
5+
6+
🚀 Official stable release!
7+
8+
Add `DeferredColor.resolveToStateList` to support resolving color `<selector>` elements from XML
9+
resources and attributes.
10+
311
## 0.5.1
412
_2020-07-22_
513

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ buildscript {
3939

4040
ext {
4141
publishGroup = 'com.backbase.oss.deferredresources'
42-
libraryVersion = '1.0.0-SNAPSHOT'
42+
libraryVersion = '1.0.0'
4343
minSdk = 14
4444
targetSdk = 29
4545
buildToolsVersion = '29.0.3'

mkdocs.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ remote_branch: gh-pages
99

1010
nav:
1111
- 'Overview': index.md
12-
- '0.x API':
13-
- 'deferred-resources': 0.x/deferred-resources/index.html
12+
- '1.x API':
13+
- 'deferred-resources': 1.x/deferred-resources/index.html
14+
- 'view-extensions': 1.x/view-extensions/index.html
1415
- 'Changelog': changelog.md
1516
- 'Contributing': contributing.md
1617

publish.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ task sourcesJar(type: Jar) {
1111

1212
apply plugin: 'org.jetbrains.dokka'
1313
dokka {
14-
outputDirectory = "$rootDir/docs/0.x"
14+
outputDirectory = "$rootDir/docs/1.x"
1515
outputFormat = 'gfm'
1616
inputs.dir 'src/main/java'
1717
}

0 commit comments

Comments
 (0)