Skip to content

Commit

Permalink
Prepare new version (#746)
Browse files Browse the repository at this point in the history
* Fix bom publishing ignore projects

- Resolved #721

* Remove useless version fine

* Fix doc publishing issue

* Bump versions

* Write relnote
  • Loading branch information
jisungbin committed Jun 4, 2023
1 parent 0fc36bc commit 8a78226
Show file tree
Hide file tree
Showing 7 changed files with 54 additions and 4 deletions.
2 changes: 2 additions & 0 deletions bom/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ dependencies {
projects.uiSample.dependencyProject,
projects.utilBackendTest.dependencyProject,
projects.rubberdoc.dependencyProject,
projects.catalog.dependencyProject,
projects.materialIconGenerator.dependencyProject,
)

constraints {
Expand Down
2 changes: 1 addition & 1 deletion bom/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2023.05.27
2023.06.05
1 change: 0 additions & 1 deletion material-icon-generator/version.txt

This file was deleted.

2 changes: 1 addition & 1 deletion material/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.0-alpha05
2.0.0-alpha06
7 changes: 7 additions & 0 deletions ui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,13 @@ ksp {
arg("CasaPath", "$rootDir/catalog/src/main/kotlin/team/duckie/quackquack/catalog")
}

// https://github.com/Kotlin/dokka/issues/2956
tasks.matching { task ->
task.name.contains("javaDocReleaseGeneration", ignoreCase = true)
}.configureEach {
enabled = false
}

val sample: Configuration by configurations.creating {
isCanBeResolved = false
isCanBeConsumed = false
Expand Down
2 changes: 1 addition & 1 deletion ui/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.0-alpha06
2.0.0-alpha07
42 changes: 42 additions & 0 deletions website/docs/releases.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,48 @@ sidebar_label: Releases

Every release includes a bill of materials updates. Check the [GitHub release](https://github.com/duckie-team/quack-quack-android/releases) page for the BOM version.

## 2.0.0-alpha07

*2023-06-05*

*Target: ui*

This release does not include sugar component updates.

### New

- Add `QuackFilledTextField` component.

### Fixed

- Resolve "duplicate class" build errors.

## 2.0.0-alpha06

*2023-06-05*

*Target: material*

This release does not include sugar component updates.

⚠️ This release includes a breaking change.

### New

- `QuackIcon` now uses an `ImageVector`.

## 2.0.0-alpha01

*2023-06-05*

*Target: material-icon*

Initial releases.

### New

- Add a default `QuackIcon` resources.

## 2.0.0-alpha06

*2023-05-27*
Expand Down

0 comments on commit 8a78226

Please sign in to comment.