File tree Expand file tree Collapse file tree 4 files changed +11
-4
lines changed Expand file tree Collapse file tree 4 files changed +11
-4
lines changed Original file line number Diff line number Diff line change
1
+ # 5.1.3
2
+ Update to kotlin 1.8.21
3
+ Fix click listener kapt bug (#1327 )
4
+ Resolve unchecked call warning for WrappedEpoxyModelClickListener (#1337 )
5
+ Fix refresh KDoc (#1334 )
6
+ epoxy-kspsample : use ksp block to specify arguments (#1347 )
7
+
1
8
# 5.1.2
2
9
3
10
Updates kotlin, ksp, and the xprocessing library.
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ Releasing
6
6
3 . ` git commit -am "Prepare for release X.Y.Z." ` (where X.Y.Z is the version you set in step 1)
7
7
4 . Add your sonatype login information under gradle properties mavenCentralUsername and mavenCentralPassword in your local user gradle.properties file
8
8
5 . Make sure you have a gpg signing key configured (https://vanniktech.github.io/gradle-maven-publish-plugin/central/#secrets )
9
- 5 . ` ./gradlew publish ` to build the artifacts and publish them to maven
9
+ 5 . ` ./gradlew publishAllPublicationsToMavenCentral --no-configuration-cache ` to build the artifacts and publish them to maven
10
10
7 . Open PR on Github, merge, and publish release through Github UI.
11
11
12
12
Publishing a release to an internal repository
@@ -16,7 +16,7 @@ To publish an internal release to an Artifactory repository:
16
16
17
17
1 . Set credential values for ARTIFACTORY_USERNAME and ARTIFACTORY_PASSWORD in your local gradle.properties
18
18
2 . Set values for ARTIFACTORY_RELEASE_URL (and optionally ARTIFACTORY_SNAPSHOT_URL if you are publishing a snapshot)
19
- 3 . /gradlew publishAllPublicationsToAirbnbArtifactoryRepository -PdoNotSignRelease=true
19
+ 3 . . /gradlew publishAllPublicationsToAirbnbArtifactoryRepository -PdoNotSignRelease=true --no-configuration-cache
20
20
4 . "-PdoNotSignRelease=true" is optional, but we don't need to sign artifactory releases and this allows everyone to publish without setting up a gpg key
21
21
22
22
If you need to publish to a different repository, look at the configuration in 'publishing.gradle'
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ buildscript {
14
14
classpath " com.android.tools.build:gradle:$ANDROID_PLUGIN_VERSION "
15
15
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$KOTLIN_VERSION "
16
16
// Upload with: (see RELEASING.md)
17
- // ./gradlew publish
17
+ // ./gradlew publishAllPublicationsToMavenCentral --no-configuration-cache
18
18
classpath ' com.vanniktech:gradle-maven-publish-plugin:0.22.0'
19
19
// Dokka is needed on classpath for vanniktech publish plugin
20
20
classpath " org.jetbrains.dokka:dokka-gradle-plugin:1.6.10"
Original file line number Diff line number Diff line change 1
- VERSION_NAME =5.1.2
1
+ VERSION_NAME =5.1.3
2
2
GROUP =com.airbnb.android
3
3
POM_DESCRIPTION =Epoxy is a system for composing complex screens with a ReyclerView in Android.
4
4
POM_URL =https://github.com/airbnb/epoxy
You can’t perform that action at this time.
0 commit comments