Skip to content

Commit d5ee584

Browse files
committed
Prepare next development version
1 parent a755bf4 commit d5ee584

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ jobs:
5050
5151
- name: Publish snapshot (main branch only)
5252
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

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ ViewPump installs a custom `LayoutInflater` via a `ContextThemeWrapper` and prov
99

1010
### Dependency
1111

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) :
1313

1414
```groovy
1515
dependencies {
16-
implementation 'io.github.inflationx:viewpump:2.0.3'
16+
implementation 'io.github.inflationx:viewpump:2.1.0'
1717
}
1818
```
1919

RELEASING.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ Releasing
44
1. Change the version in `gradle.properties` to a non-SNAPSHOT version.
55
2. Update the `CHANGELOG.md` for the impending release
66
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

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
org.gradle.jvmargs=-Xmx1536M '-Dfile.encoding=UTF-8'
22

3-
version=2.1.0-SNAPSHOT
3+
version=2.1.1-SNAPSHOT
44

55
android.useAndroidX=true
66

0 commit comments

Comments
 (0)