Skip to content

Commit

Permalink
Prepare for next release (#494)
Browse files Browse the repository at this point in the history
* Prepare for next release
* Update workflows and readme to mirror latest changes
  • Loading branch information
vbuberen committed Nov 5, 2020
1 parent 372378d commit 4f3e61a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 12 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/gradle-wrapper-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ name: Validate Gradle Wrapper
on:
push:
branches:
- develop
- main
- develop
pull_request:
branches:
- '*'
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/pre-merge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ name: Pre Merge Checks
on:
push:
branches:
- develop
- main
- develop
pull_request:
branches:
- '*'
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ Please note that you should add both the `library` and the the `library-no-op` v

```groovy
dependencies {
debugImplementation "com.github.chuckerteam.chucker:library:3.3.0"
releaseImplementation "com.github.chuckerteam.chucker:library-no-op:3.3.0"
debugImplementation "com.github.chuckerteam.chucker:library:3.4.0"
releaseImplementation "com.github.chuckerteam.chucker:library-no-op:3.4.0"
}
```

Expand Down Expand Up @@ -150,8 +150,8 @@ repositories {
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
}
dependencies {
debugImplementation "com.github.chuckerteam.chucker:library:3.3.1-SNAPSHOT"
releaseImplementation "com.github.chuckerteam.chucker:library-no-op:3.3.1-SNAPSHOT"
debugImplementation "com.github.chuckerteam.chucker:library:3.4.1-SNAPSHOT"
releaseImplementation "com.github.chuckerteam.chucker:library-no-op:3.4.1-SNAPSHOT"
}
```

Expand All @@ -170,7 +170,7 @@ dependencies {

⚠️ Please note that the latest snapshot might be **unstable**. Use it at your own risk ⚠️

If you're looking for the **latest stable version**, you can always find it on the top of the `main` branch.
If you're looking for the **latest stable version**, you can always find it in `Releases` section.

## FAQ ❓

Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ org.gradle.parallel=true

android.useAndroidX=true

VERSION_NAME=3.4.0
# 3*100*100 + 4*100 + 0 => 30400
VERSION_CODE=30400
VERSION_NAME=3.4.1-SNAPSHOT
# 3*100*100 + 4*100 + 1 => 30401
VERSION_CODE=30401
GROUP=com.github.chuckerteam.chucker

POM_REPO_NAME=Chucker
Expand Down

0 comments on commit 4f3e61a

Please sign in to comment.