Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Prepare for v3.1.0 release #68

Merged
merged 3 commits into from
Jun 18, 2024
Merged

Conversation

felipecsl
Copy link
Member

@felipecsl felipecsl commented Jun 18, 2024

Description

Bump SDK version and some dependencies for v3.1.0 release.
I also had to tweak the build script and workflow files so we can have different workflows for publishing snapshot vs. release artifacts conditionally

Testing

Verified the Sample app launched and assigned correctly
image

Copy link
Contributor

@petzel petzel left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:shipit:

Copy link
Contributor

@aarsilv aarsilv left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📈

Comment on lines +164 to +173
if (!project.hasProperty('release') && !project.hasProperty('snapshot')) {
throw new GradleException("You must specify either -Prelease or -Psnapshot")
}
if (project.hasProperty('release') && project.version.endsWith('SNAPSHOT')) {
throw new GradleException("You cannot specify -Prelease with a SNAPSHOT version")
}
if (project.hasProperty('snapshot') && !project.version.endsWith('SNAPSHOT')) {
throw new GradleException("You cannot specify -Psnapshot with a non-SNAPSHOT version")
}
project.ext.shouldPublish = true
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Appreciate the defensiveness!

@felipecsl felipecsl merged commit 8a1b2c0 into main Jun 18, 2024
1 check passed
@felipecsl felipecsl deleted the felipecsl--android-release branch June 18, 2024 20:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants