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

Prepare for Gradle Plugin release 4.1.0 #482

Merged
merged 1 commit into from
Feb 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/gradle-plugin-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ jobs:
uses: gradle/actions/setup-gradle@v4
- name: Check
run: ./gradlew :gradle-plugin:plugin:check
# If we build the plugin even just for testing we need the signing keys since they are required on non-snapshot builds
env:
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.ORG_GRADLE_PROJECT_signingKey }}
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.ORG_GRADLE_PROJECT_signingPassword }}
- name: Archive test reports
uses: actions/upload-artifact@v4
if: always()
Expand Down
3 changes: 3 additions & 0 deletions gradle-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 4.1.0 - 2024-02-27
- Drop support for AGP 7.X versions and Java 11, minimum version is now AGP 8.0.0 and Java 17

## 4.0.9 - 2024-02-05
- Another fix for parsing git information on bitbucket [#442](https://github.com/EmergeTools/emerge-android/pull/442)

Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ runtime-android = "1.7.6"
foundation-layout-android = "1.7.6"

# internal
emerge-gradle-plugin = "4.0.10-SNAPSHOT"
emerge-gradle-plugin = "4.1.0"
emerge-performance = "2.1.2"
emerge-reaper = "1.0.0"
emerge-snapshots = "1.3.3"
Expand Down