Skip to content

Commit

Permalink
Prepare for release 0.10.10.
Browse files Browse the repository at this point in the history
  • Loading branch information
ZacSweers committed Oct 2, 2023
1 parent 29c807b commit 4b7a2e7
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
Changelog
=========

0.10.10
-------

_2023-10-02_

- Make debug builds everywhere (local and CI) use consistent version codes and version names. This way remote build cache entries for them are compatible.
- Default debug version code is governed by `slack.gradle.debugVersionCode` and defaults to `90009999`.
- Default version name user suffix is governed by `slack.gradle.debugUserString` and defaults to `debug`.
- Non-debug build types are the same as before.
- Remove a noisy lifecycle log around lint variant selection.
- Build against Bugsnag Gradle Plugin `8.1.0`.

0.10.9
------

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ POM_DEVELOPER_ID=slackhq
POM_DEVELOPER_NAME=Slack Technologies, Inc.
POM_DEVELOPER_URL=https://github.com/slackhq
POM_INCEPTION_YEAR=2022
VERSION_NAME=1.0.0-SNAPSHOT
VERSION_NAME=0.10.10
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public class SlackProperties private constructor(private val project: Project) {

/** User string used for debug APK outputs. */
public val debugUserString: String
get() = stringProperty("slack.gradle.debugVersionCode", "debug")
get() = stringProperty("slack.gradle.debugUserString", "debug")

/** Opt-in flag to enable snapshots repos, used for the dependencies build shadow job. */
public val enableSnapshots: Boolean
Expand Down

0 comments on commit 4b7a2e7

Please sign in to comment.