Skip to content

Commit

Permalink
Prepare version 14.0.0_r21
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Jan 8, 2024
1 parent f87e86f commit 31c0734
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ Change Log
For library changes see https://android.googlesource.com/platform/dalvik/+log/master/dx


Version 14.0.0_r21 *(2024-01-08)*
--------------------------------

`platform/dalvik` tag `android-14.0.0_r21`


Version 11.0.0_r3 *(2020-09-10)*
--------------------------------

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Download
Gradle:

```groovy
implementation 'com.jakewharton.android.repackaged:dalvik-dx:11.0.0_r3'
implementation 'com.jakewharton.android.repackaged:dalvik-dx:14.0.0_r21'
```

Maven:
Expand All @@ -19,7 +19,7 @@ Maven:
<dependency>
<groupId>com.jakewharton.android.repackaged</android>
<artifactId>dalvik-dx</artifactId>
<version>11.0.0_r3</version>
<version>14.0.0_r21</version>
</dependency>
```

Expand Down
40 changes: 40 additions & 0 deletions RELEASING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Releasing

1. Update the `VERSION_NAME` in `gradle.properties` to the release version.

2. Update the `CHANGELOG.md`:

3. Update the `README.md` so the "Download" section reflects the new release version and the
snapshot section reflects the next "SNAPSHOT" version.

4. Commit

```
$ git commit -am "Prepare version X.Y.X"
```

5. Publish

```
$ ./gradlew clean publish
```
6. Tag
```
$ git tag -am "Version X.Y.Z" X.Y.Z
```
7. Update the `VERSION_NAME` in `gradle.properties` to the next "SNAPSHOT" version.
8. Commit
```
$ git commit -am "Prepare next development version"
```
9. Push!
```
$ git push && git push --tags
```
9 changes: 7 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
GROUP=com.jakewharton.android.repackaged
VERSION_NAME=14.0.0_r18-SNAPSHOT
VERSION_NAME=14.0.0_r21

POM_DESCRIPTION=platform/dalvik dx
POM_ARTIFACT_ID=dalvik-dx
POM_NAME=dalvik-dx
POM_DESCRIPTION=AOSP's platform/dalvik-dx
POM_URL=https://github.com/JakeWharton/dalvik-dx/
POM_SCM_URL=https://github.com/JakeWharton/dalvik-dx/
Expand All @@ -15,6 +17,9 @@ POM_LICENCE_DIST=repo
POM_DEVELOPER_ID=jakewharton
POM_DEVELOPER_NAME=Jake Wharton
SONATYPE_HOST=DEFAULT
SONATYPE_AUTOMATIC_RELEASE=true
RELEASE_SIGNING_ENABLED=true
org.gradle.caching=true
org.gradle.jvmargs=-Dfile.encoding=UTF-8
Expand Down

0 comments on commit 31c0734

Please sign in to comment.