Skip to content

Commit

Permalink
chore(release): initialize release 8.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
v1nc3n4 committed Aug 23, 2023
1 parent 97e041b commit 7b493c0
Show file tree
Hide file tree
Showing 17 changed files with 29 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Actual results: ...
- OS: [e.g. Ubuntu 22.04.1, Windows 11 Pro, Mac OS X]
- JDK: [e.g. Adoptium Temurin JDK 17 64 bits]
- Gradle: [e.g. Gradle 8.2.1]
- Frontend Gradle plugin: [e.g. 7.1.0 JDK 11]
- Frontend Gradle plugin: [e.g. 8.0.0 JDK 17]

Settings in `build.gradle[.kts]` file:
```groovy
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<a href="https://www.npmjs.com/" title="npm">npm</a>, <a href="https://pnpm.io/" title="pnpm">pnpm</a>,
<a href="https://yarnpkg.com/" title="Yarn">Yarn</a> builds</h2>
<p align="center">
<a href="https://github.com/siouan/frontend-gradle-plugin/releases/tag/v7.1.0"><img src="https://img.shields.io/badge/Latest%20release-7.1.0-blue.svg" alt="Latest release 7.1.0"/></a>
<a href="https://github.com/siouan/frontend-gradle-plugin/releases/tag/v8.0.0"><img src="https://img.shields.io/badge/Latest%20release-8.0.0-blue.svg" alt="Latest release 8.0.0"/></a>
<a href="https://opensource.org/licenses/Apache-2.0"><img src="https://img.shields.io/badge/License-Apache%202.0-green.svg" alt="License Apache 2.0"/></a>
<br/>
<a href="https://github.com/siouan/frontend-gradle-plugin/actions/workflows/build.yml"><img src="https://github.com/siouan/frontend-gradle-plugin/actions/workflows/build.yml/badge.svg?branch=7.0-jdk17" alt="Build status"/></a>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pluginManagement {
plugins {
id("org.siouan.frontend-jdk17") version "7.1.0"
id("org.siouan.frontend-jdk17") version "8.0.0"
}
}
2 changes: 1 addition & 1 deletion examples/fullstack-war-application/settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pluginManagement {
id("war")
id("org.springframework.boot") version "2.7.12"
id("io.spring.dependency-management") version "1.1.0"
id("org.siouan.frontend-jdk17") version "7.1.0"
id("org.siouan.frontend-jdk17") version "8.0.0"
}
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pluginManagement {
plugins {
id("org.siouan.frontend-jdk17") version "7.1.0"
id("org.siouan.frontend-jdk17") version "8.0.0"
}
}

Expand Down
2 changes: 1 addition & 1 deletion examples/npm-application/settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pluginManagement {
plugins {
id("org.siouan.frontend-jdk17") version "7.1.0"
id("org.siouan.frontend-jdk17") version "8.0.0"
}
}
2 changes: 1 addition & 1 deletion examples/pnpm-application/settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pluginManagement {
plugins {
id("org.siouan.frontend-jdk17") version "7.1.0"
id("org.siouan.frontend-jdk17") version "8.0.0"
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pluginManagement {
plugins {
id("org.siouan.frontend-jdk17") version "7.1.0"
id("org.siouan.frontend-jdk17") version "8.0.0"
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pluginManagement {
plugins {
id("org.siouan.frontend-jdk17") version "7.1.0"
id("org.siouan.frontend-jdk17") version "8.0.0"
}
}
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
3 changes: 2 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
5 changes: 4 additions & 1 deletion gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,13 @@ location of your Java installation."
fi
else
JAVACMD=java
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
if ! command -v java >/dev/null 2>&1
then
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
fi

# Increase the maximum file descriptors if we can.
Expand Down
2 changes: 1 addition & 1 deletion plugin/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
fgpArtifactId=frontend-jdk17
fgpGroup=org.siouan
fgpVersion=7.1.0
fgpVersion=8.0.0
fgpDisplayName=Frontend Gradle plugin
fgpDescription=Build Javascript applications with Node, NPM, PNPM, Yarn: distribution management and package manager activation (Corepack), built-in tasks, additional task types.
fgpImplementationClass=org.siouan.frontendgradleplugin.FrontendGradlePlugin
Expand Down
2 changes: 1 addition & 1 deletion site/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
}

dependencies {
classpath("org.siouan", "frontend-jdk17", "7.1.0")
classpath("org.siouan", "frontend-jdk17", "8.0.0")
}
}

Expand Down
2 changes: 1 addition & 1 deletion site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "frontend-gradle-plugin-site",
"description": "Frontend Gradle plugin's official site",
"license": "Apache-2.0",
"version": "7.1.0",
"version": "8.0.0",
"packageManager": "yarn@3.6.0",
"scripts": {
"dev": "nuxt",
Expand Down
16 changes: 8 additions & 8 deletions site/src/pages/getting-started.vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,17 @@
<template #groovy>
<pre><fgp-code>plugins {
<fgp-code-comment>// For JDK 17+</fgp-code-comment>
id 'org.siouan.frontend-jdk17' version '7.1.0'
id 'org.siouan.frontend-jdk17' version '8.0.0'
<fgp-code-comment>// For JDK 11+</fgp-code-comment>
id 'org.siouan.frontend-jdk11' version '7.1.0'
id 'org.siouan.frontend-jdk11' version '8.0.0'
}</fgp-code></pre>
</template>
<template #kotlin>
<pre><fgp-code>plugins {
<fgp-code-comment>// For JDK 17+</fgp-code-comment>
id("org.siouan.frontend-jdk17") version "7.1.0"
id("org.siouan.frontend-jdk17") version "8.0.0"
<fgp-code-comment>// For JDK 11+</fgp-code-comment>
id("org.siouan.frontend-jdk11") version "7.1.0"
id("org.siouan.frontend-jdk11") version "8.0.0"
}</fgp-code></pre>
</template>
</fgp-gradle-scripts>
Expand All @@ -68,9 +68,9 @@
}
dependencies {
<fgp-code-comment>// For JDK 17+</fgp-code-comment>
classpath 'org.siouan:frontend-gradle-plugin-jdk17:7.1.0'
classpath 'org.siouan:frontend-gradle-plugin-jdk17:8.0.0'
<fgp-code-comment>// For JDK 11+</fgp-code-comment>
classpath 'org.siouan:frontend-gradle-plugin-jdk11:7.1.0'
classpath 'org.siouan:frontend-gradle-plugin-jdk11:8.0.0'
}
}

Expand All @@ -86,9 +86,9 @@ apply plugin: 'org.siouan.frontend-jdk11'</fgp-code></pre>
}
dependencies {
<fgp-code-comment>// For JDK 17+</fgp-code-comment>
classpath("org.siouan:frontend-gradle-plugin-jdk17:7.1.0")
classpath("org.siouan:frontend-gradle-plugin-jdk17:8.0.0")
<fgp-code-comment>// For JDK 11+</fgp-code-comment>
classpath("org.siouan:frontend-gradle-plugin-jdk11:7.1.0")
classpath("org.siouan:frontend-gradle-plugin-jdk11:8.0.0")
}
}

Expand Down
6 changes: 3 additions & 3 deletions site/src/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
builds
</small>
<fgp-image-link
href="https://github.com/siouan/frontend-gradle-plugin/releases/tag/v7.1.0"
src="https://img.shields.io/badge/Latest%20release-7.1.0-blue.svg"
alt="Latest release 7.1.0"
href="https://github.com/siouan/frontend-gradle-plugin/releases/tag/v8.0.0"
src="https://img.shields.io/badge/Latest%20release-8.0.0-blue.svg"
alt="Latest release 8.0.0"
class="ml-1"
/>
</fgp-main-title>
Expand Down

0 comments on commit 7b493c0

Please sign in to comment.