Skip to content

Commit

Permalink
Fix release because build-logic isn't here anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
eygraber committed Jan 19, 2023
1 parent 6d390ac commit eefacdb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/publish_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,13 +115,12 @@ jobs:
id: prepare_next_dev
run: |
sed -i -e 's/${{ env.CURRENT_VERSION }}/${{ env.NEXT_VERSION }}/g' gradle.properties && \
sed -i -e 's/${{ env.CURRENT_VERSION }}/${{ env.NEXT_VERSION }}/g' build-logic/gradle.properties && \
sed -i -E -e 's/uri-kmp(:|\/)[0-9]+\.[0-9]+\.[0-9]+/uri-kmp\1${{ env.RELEASE_VERSION }}/g' README.md
- name: Commit next dev version
id: commit_next_dev
uses: EndBug/[email protected]
with:
add: "['gradle.properties', 'build-logic/gradle.properties', 'README.md']"
add: "['gradle.properties', 'README.md']"
default_author: github_actions
message: "Prepare next dev version"
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Uri KMP

[![Download](https://img.shields.io/maven-central/v/com.eygraber/uri-kmp/0.0.9)](https://search.maven.org/artifact/com.eygraber/uri-kmp)
[![Download](https://img.shields.io/maven-central/v/com.eygraber/uri-kmp/0.0.10)](https://search.maven.org/artifact/com.eygraber/uri-kmp)

Most of this work is derived from AOSP's `Uri`:

Expand All @@ -19,15 +19,15 @@ Groovy
repositories {
mavenCentral()
}
implementation 'com.eygraber:uri-kmp:0.0.9'
implementation 'com.eygraber:uri-kmp:0.0.10'
```

Kotlin
```
repositories {
mavenCentral()
}
implementation("com.eygraber:uri-kmp:0.0.9")
implementation("com.eygraber:uri-kmp:0.0.10")
```

#### Snapshots
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ org.gradle.jvmargs=-Xmx2g -XX:ReservedCodeCacheSize=240m -XX:+UseCompressedOops
kotlin.daemon.jvm.options=-Xmx2g -XX:ReservedCodeCacheSize=240m -XX:+UseCompressedOops -XX:+UseParallelGC -XX:MetaspaceSize=256m -Dfile.encoding=UTF-8

group=com.eygraber
version=0.0.10-SNAPSHOT
version=0.0.11-SNAPSHOT

POM_URL=https://github.com/eygraber/uri-kmp/
POM_SCM_URL=https://github.com/eygraber/uri-kmp/
Expand Down

0 comments on commit eefacdb

Please sign in to comment.