Skip to content
20 changes: 18 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,25 @@
# ChangeLog

## Unreleased

## ver 2.10.0

Comment thread
tnj marked this conversation as resolved.
- Migrate to Android Gradle Plugin's public `androidComponents`/Artifacts API and support AGP 9.x. [#283](https://github.com/DeployGate/gradle-deploygate-plugin/pull/283)
- Support Android Gradle Plugin of below:
Comment thread
tnj marked this conversation as resolved.
Outdated
- 8.8.x with Gradle 8.10.2
- 8.9.x with Gradle 8.11.1
- 8.10.x with Gradle 8.11.1
- 8.11.x with Gradle 8.13
- 8.12.x with Gradle 8.13
- 8.13.x with Gradle 8.13
- 9.0.x with Gradle 9.1.0
- 9.1.x with Gradle 9.3.1
- 9.2.x with Gradle 9.4.1
- Support Gradle's configuration cache. [#272](https://github.com/DeployGate/gradle-deploygate-plugin/pull/272)

*Breaking Changes*
Comment thread
tnj marked this conversation as resolved.
Outdated

- Drop support for Android Gradle Plugin 4.2.x and Gradle 6.7.x. [#283](https://github.com/DeployGate/gradle-deploygate-plugin/pull/283)
- The minimum required Android Gradle Plugin is now 7.0 (was 4.2.0) and the minimum required Gradle is now 7.0 (was 6.7.1). To keep using AGP 4.2.x or Gradle 6.x, stay on 2.9.x or earlier.

## ver 2.9.0

- Support Android Gradle Plugin of below:
Expand Down
12 changes: 4 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Gradle DeployGate Plugin

[![Build Status](https://travis-ci.org/DeployGate/gradle-deploygate-plugin.png?branch=master)](https://travis-ci.org/DeployGate/gradle-deploygate-plugin)
[![Build Status](https://github.com/DeployGate/gradle-deploygate-plugin/actions/workflows/build-and-test.yml/badge.svg)](https://github.com/DeployGate/gradle-deploygate-plugin/actions/workflows/build-and-test.yml)
[ ![Download](https://img.shields.io/maven-central/v/com.deploygate/gradle) ](https://search.maven.org/artifact/com.deploygate/gradle)

This is the DeployGate plugin for the Gradle. You can build and deploy your apps to DeployGate by running a single task.
Expand Down Expand Up @@ -113,10 +113,6 @@ We are not supporting Canary(Alpha) versions because of API stability. Please wa

See the test matrix of [.github/workflows/build-and-test.yml](./.github/workflows/build-and-test.yml) for the latest information.

| JRE | Android Gradle Plugin | Gradle DeployGate Plugin |
|:----|:----------------------|:-------------------------|
| 17 | - | - |

### Binary compatibility

| Gradle DeployGate Plugin | Minimum JRE version |
Expand Down Expand Up @@ -310,7 +306,7 @@ If you get a time-out error from jitpack, then please run your task again.

### Requirements

- JRE 11+
- JRE 11+ (JRE 17+ to run the AGP 8.0+ / Gradle 9 test matrix)
- Docker (only for testing)

### Steps
Expand All @@ -327,7 +323,7 @@ And also, please make sure your changes pass unit tests and acceptance tests. CI

```bash
# please make sure https://github.com/DeployGate/deploygate-mock-server/pkgs/container/deploygate-mock-server has been launched
./gradlew test acceptanceTest
./gradlew test testUnrollAcceptanceTest testPluginAcceptanceTest
```

## <a name="migrate-v2">Migrate from v1 to v2</a>
Expand Down Expand Up @@ -417,7 +413,7 @@ See [CHANGELOG.md](./CHANGELOG.md)

# License

Copyright 2015-2020 DeployGate Inc.
Copyright 2015-2026 DeployGate Inc.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

Expand Down
12 changes: 4 additions & 8 deletions README_JP.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Gradle DeployGate Plugin

[![Build Status](https://travis-ci.org/DeployGate/gradle-deploygate-plugin.png?branch=master)](https://travis-ci.org/DeployGate/gradle-deploygate-plugin)
[![Build Status](https://github.com/DeployGate/gradle-deploygate-plugin/actions/workflows/build-and-test.yml/badge.svg)](https://github.com/DeployGate/gradle-deploygate-plugin/actions/workflows/build-and-test.yml)
[ ![Download](https://img.shields.io/maven-central/v/com.deploygate/gradle) ](https://search.maven.org/artifact/com.deploygate/gradle)

DeployGate Gradle プラグインです。DeployGate 経由でアプリを配信するための Gradle タスクが簡単に設定できます。
Expand Down Expand Up @@ -111,10 +111,6 @@ API仕様が頻繁に変わる可能性があることから、Canary(Alpha) バ

[.github/workflows/build-and-test.yml](./.github/workflows/build-and-test.yml) を参考にしてください

| JRE | Android Gradle Plugin | Gradle DeployGate Plugin |
|:----|:----------------------|:-------------------------|
| 17 | - | - |

### Binary compatibility

| Gradle DeployGate Plugin | Minimum JRE version |
Expand Down Expand Up @@ -304,7 +300,7 @@ jitpack.io は初回のリクエストを受けてからスナップショット

### 要求

- JRE 11+
- JRE 11+ (AGP 8.0+ / Gradle 9 のテストマトリクスを実行する場合は JRE 17+)
- Docker (テスト用の機能のみ)

### Steps
Expand All @@ -321,7 +317,7 @@ jitpack.io は初回のリクエストを受けてからスナップショット

```bash
# https://github.com/DeployGate/deploygate-mock-server/pkgs/container/deploygate-mock-server を起動してください
./gradlew test acceptanceTest
./gradlew test testUnrollAcceptanceTest testPluginAcceptanceTest
```

## <a name="migrate-v2">v1 から v2 への移行</a>
Expand Down Expand Up @@ -412,7 +408,7 @@ deploygate {

# License

Copyright 2015-2019 DeployGate Inc.
Copyright 2015-2026 DeployGate Inc.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.9.0
2.10.0
Loading