File tree 4 files changed +13
-13
lines changed
4 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 50
50
51
51
- name : Publish snapshot (main branch only)
52
52
if : github.repository == 'inflationx/viewpump' && github.ref == 'refs/heads/main'
53
- run : ./gradlew publish -PmavenCentralUsername =${{ secrets.SONATYPE_USERNAME }} -PmavenCentralPassword =${{ secrets.SONATYPE_PASSWORD }} --no-configuration-cache
53
+ run : ./gradlew publishRelease -PSONATYPE_USERNAME =${{ secrets.SONATYPE_USERNAME }} -PSONATYPE_USERNAME =${{ secrets.SONATYPE_PASSWORD }} --no-configuration-cache
Original file line number Diff line number Diff line change @@ -9,11 +9,11 @@ ViewPump installs a custom `LayoutInflater` via a `ContextThemeWrapper` and prov
9
9
10
10
### Dependency
11
11
12
- Include the dependency [ Download (.aar)] ( http://search.maven.org/remotecontent?filepath=io/github/inflationx/viewpump/2.0.3 /viewpump-2.0.3 .aar ) :
12
+ Include the dependency [ Download (.aar)] ( http://search.maven.org/remotecontent?filepath=io/github/inflationx/viewpump/2.1.0 /viewpump-2.1.0 .aar ) :
13
13
14
14
``` groovy
15
15
dependencies {
16
- implementation 'io.github.inflationx:viewpump:2.0.3 '
16
+ implementation 'io.github.inflationx:viewpump:2.1.0 '
17
17
}
18
18
```
19
19
Original file line number Diff line number Diff line change @@ -4,12 +4,12 @@ Releasing
4
4
1 . Change the version in ` gradle.properties ` to a non-SNAPSHOT version.
5
5
2 . Update the ` CHANGELOG.md ` for the impending release
6
6
3 . Update the ` README.md ` with the new version.
7
- 4 . ` git tag -a X.Y.Z -m "Version X.Y.Z" ` (where X.Y.Z is the new version)
8
- 5 . ` ./gradlew clean publishRelease `
9
- 6 . ` git push --tags `
10
- 7 . ` git checkout -b release/bump-version `
11
- 8 . Update the ` gradle.properties ` to the next SNAPSHOT version.
12
- 9 . ` git commit -am "Prepare next development version" `
13
- 10 . ` git push && git push --tags `
14
- 11 . Visit [ Sonatype Nexus] ( https://oss.sonatype.org/ ) and promote the artifact.
15
- 12 . Merge ` release/bump-version ` Pull-Request
7
+ 4 . ` git checkout -b release/ X.Y.0 `
8
+ 6 . ` git tag -a X.Y.Z -m "Version X.Y.Z" ` (where X.Y.Z is the new version)
9
+ 7 . ` ./gradlew clean publishRelease `
10
+ 8 . ` git push --tags `
11
+ 10 . Update the ` gradle.properties ` to the next SNAPSHOT version.
12
+ 11 . ` git commit -am "Prepare next development version" `
13
+ 12 . ` git push && git push --tags `
14
+ 13 . Visit [ Sonatype Nexus] ( https://oss.sonatype.org/ ) and promote the artifact.
15
+ 14 . Merge ` release/X.Y.0 ` Pull-Request
Original file line number Diff line number Diff line change 1
1
org.gradle.jvmargs =-Xmx1536M '-Dfile.encoding=UTF-8'
2
2
3
- version =2.1.0 -SNAPSHOT
3
+ version =2.1.1 -SNAPSHOT
4
4
5
5
android.useAndroidX =true
6
6
You can’t perform that action at this time.
0 commit comments