From 1fdbe12867e9a2f7dc4fff3317acc7c86a3dfc75 Mon Sep 17 00:00:00 2001 From: Matt Ramotar Date: Sun, 13 Mar 2022 16:33:35 -0400 Subject: [PATCH] Prepare for release 0.1.0-alpha --- CHANGELOG.md | 26 +++++++++++++++++--------- README.md | 2 +- gradle.properties | 2 +- 3 files changed, 19 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 59e98bf0..7ea6e832 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,25 +1,33 @@ # Changelog ## [Unreleased] + +## [0.1.0-alpha] (2022-03-13) ### Added -- ComponentBoxPresenter -- ComponentBoxState -- ComponentBoxViewState -- ComponentBoxRoot -- ComponentBoxView -- ComponentBoxDialogFragment -- ComponentBoxFragment +- Default Material implementation +- Common utils +- Surface component +- ComponentBoxPresenter class +- ComponentBoxState class +- ComponentBoxViewState class +- ComponentBoxContext class +- ComponentBoxZipline class +- ComponentBoxView class +- ComponentBoxDialogFragment class +- ComponentBoxFragment class ### Changed +- Renamed models package to "foundation" - Renamed HorizontalBanner to Banner - Rearchitected Discovery app - Refactored Zipline integration with Discovery app ### Removed -- VerticalBanner +- VerticalBanner type ## [0.0.1-alpha] (2022-03-04) - Initial public release -[Unreleased]: https://github.com/dropbox/componentbox/compare/v0.0.1-alpha...HEAD +[Unreleased]: https://github.com/dropbox/componentbox/compare/v0.1.0-alpha...HEAD +[0.1.0-alpha]: https://github.com/dropbox/componentbox/releases/tag/v0.1.0-alpha [0.0.1-alpha]: https://github.com/dropbox/componentbox/releases/tag/v0.0.1-alpha \ No newline at end of file diff --git a/README.md b/README.md index 0cbc72b0..d7ccbca9 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ A Kotlin multiplatform library for building dynamic server-driven UI. ## Installation ```kotlin -implementation("com.dropbox.componentbox:componentbox:0.0.1-alpha") +implementation("com.dropbox.componentbox:componentbox:0.1.0-alpha") ``` ## Documentation diff --git a/gradle.properties b/gradle.properties index ebeba1ca..e6b645d7 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.dropbox.componentbox -VERSION_NAME=0.1.0-SNAPSHOT +VERSION_NAME=0.1.0-alpha POM_ARTIFACT_ID=componentbox POM_NAME=Component Box