Skip to content

Commit 8e576a8

Browse files
Update version to 6.15.0-rc2 in pom.xml and scripts
1 parent 2cf76e1 commit 8e576a8

File tree

14 files changed

+35
-35
lines changed

14 files changed

+35
-35
lines changed

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -25,22 +25,22 @@ dependency for your operating system:
2525
<plugin>
2626
<groupId>io.github.nddipiazza</groupId>
2727
<artifactId>spectral-maven-plugin</artifactId>
28-
<version>6.15.0-rc1</version>
28+
<version>6.15.0-rc2</version>
2929
<dependencies>
3030
<!-- Include the platform-specific dependency for your OS -->
3131
<!-- For Windows: -->
3232
<dependency>
3333
<groupId>io.github.nddipiazza</groupId>
3434
<artifactId>spectral-win</artifactId>
35-
<version>6.15.0-rc1</version>
35+
<version>6.15.0-rc2</version>
3636
</dependency>
3737

3838
<!-- For Linux x64: -->
3939
<!--
4040
<dependency>
4141
<groupId>io.github.nddipiazza</groupId>
4242
<artifactId>spectral-linux-x64</artifactId>
43-
<version>6.15.0-rc1</version>
43+
<version>6.15.0-rc2</version>
4444
</dependency>
4545
-->
4646

@@ -49,7 +49,7 @@ dependency for your operating system:
4949
<dependency>
5050
<groupId>io.github.nddipiazza</groupId>
5151
<artifactId>spectral-linux-arm64</artifactId>
52-
<version>6.15.0-rc1</version>
52+
<version>6.15.0-rc2</version>
5353
</dependency>
5454
-->
5555

@@ -118,17 +118,17 @@ So it is totally OK to just cover all your bases for the OS you might have in ho
118118
<plugin>
119119
<groupId>io.github.nddipiazza</groupId>
120120
<artifactId>spectral-maven-plugin</artifactId>
121-
<version>6.15.0-rc1</version>
121+
<version>6.15.0-rc2</version>
122122
<dependencies>
123123
<dependency>
124124
<groupId>io.github.nddipiazza</groupId>
125125
<artifactId>spectral-win</artifactId>
126-
<version>6.15.0-rc1</version>
126+
<version>6.15.0-rc2</version>
127127
</dependency>
128128
<dependency>
129129
<groupId>io.github.nddipiazza</groupId>
130130
<artifactId>spectral-linux-x64</artifactId>
131-
<version>6.15.0-rc1</version>
131+
<version>6.15.0-rc2</version>
132132
</dependency>
133133
<dependency>
134134
<groupId>io.github.nddipiazza</groupId>
@@ -167,13 +167,13 @@ So it is totally OK to just cover all your bases for the OS you might have in ho
167167
<plugin>
168168
<groupId>io.github.nddipiazza</groupId>
169169
<artifactId>spectral-maven-plugin</artifactId>
170-
<version>6.15.0-rc1</version>
170+
<version>6.15.0-rc2</version>
171171
<dependencies>
172172
<!-- Include platform-specific dependencies as needed -->
173173
<dependency>
174174
<groupId>io.github.nddipiazza</groupId>
175175
<artifactId>spectral-win</artifactId>
176-
<version>6.15.0-rc1</version>
176+
<version>6.15.0-rc2</version>
177177
</dependency>
178178
</dependencies>
179179
<executions>
@@ -327,10 +327,10 @@ cd spectral-maven-plugin
327327

328328
# Or specify a specific version
329329
# Linux/macOS:
330-
./copy-spectral-executables.sh v6.15.0-rc1-rc1
330+
./copy-spectral-executables.sh v6.15.0
331331

332332
# Windows:
333-
.\copy-spectral-executables.ps1 -SpectralVersion v6.15.0-rc1-rc1
333+
.\copy-spectral-executables.ps1 -SpectralVersion v6.15.0
334334

335335
# Build the plugin
336336
mvn clean install
@@ -346,7 +346,7 @@ Both scripts support the same functionality:
346346
# Show help
347347
./copy-spectral-executables.sh --help
348348

349-
# Download default version (v6.15.0-rc1-rc1)
349+
# Download default version (v6.15.0)
350350
./copy-spectral-executables.sh
351351

352352
# Download specific version
@@ -359,7 +359,7 @@ Both scripts support the same functionality:
359359
# Show help
360360
.\copy-spectral-executables.ps1 -Help
361361
362-
# Download default version (v6.15.0-rc1-rc1)
362+
# Download default version (v6.15.0)
363363
.\copy-spectral-executables.ps1
364364
365365
# Download specific version

copy-spectral-executables.ps1

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Usage: .\copy-spectral-executables.ps1 [spectral-version]
33

44
param(
5-
[string]$SpectralVersion = "v6.15.0-rc1",
5+
[string]$SpectralVersion = "v6.15.0",
66
[switch]$Help
77
)
88

@@ -13,13 +13,13 @@ if ($Help) {
1313
Write-Host "Downloads Spectral executables from GitHub releases and installs them into the Maven plugin."
1414
Write-Host ""
1515
Write-Host "Parameters:"
16-
Write-Host " -SpectralVersion The Spectral version to download (default: v6.15.0-rc1)"
17-
Write-Host " Must be in format 'vX.Y.Z' (e.g., v6.15.0-rc1, v6.11.0)"
16+
Write-Host " -SpectralVersion The Spectral version to download (default: v6.15.0)"
17+
Write-Host " Must be in format 'vX.Y.Z' (e.g., v6.15.0, v6.11.0)"
1818
Write-Host ""
1919
Write-Host "Examples:"
20-
Write-Host " .\copy-spectral-executables.ps1 # Downloads v6.15.0-rc1"
20+
Write-Host " .\copy-spectral-executables.ps1 # Downloads v6.15.0"
2121
Write-Host " .\copy-spectral-executables.ps1 -SpectralVersion v6.11.0 # Downloads v6.11.0"
22-
Write-Host " .\copy-spectral-executables.ps1 v6.15.0-rc1 # Downloads v6.15.0-rc1"
22+
Write-Host " .\copy-spectral-executables.ps1 v6.15.0 # Downloads v6.15.0"
2323
Write-Host ""
2424
Write-Host "Requirements:"
2525
Write-Host " - PowerShell 5.0 or later"

copy-spectral-executables.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,21 @@ if [[ "$1" == "--help" || "$1" == "-h" ]]; then
1010
echo "Downloads Spectral executables from GitHub releases and installs them into the Maven plugin."
1111
echo ""
1212
echo "Arguments:"
13-
echo " spectral-version The Spectral version to download (default: v6.15.0-rc1)"
14-
echo " Must be in format 'vX.Y.Z' (e.g., v6.15.0-rc1, v6.11.0)"
13+
echo " spectral-version The Spectral version to download (default: v6.15.0)"
14+
echo " Must be in format 'vX.Y.Z' (e.g., v6.15.0, v6.11.0)"
1515
echo ""
1616
echo "Examples:"
17-
echo " $0 # Downloads v6.15.0-rc1"
17+
echo " $0 # Downloads v6.15.0"
1818
echo " $0 v6.11.0 # Downloads v6.11.0"
19-
echo " $0 v6.15.0-rc1 # Downloads v6.15.0-rc1"
19+
echo " $0 v6.15.0 # Downloads v6.15.0"
2020
echo ""
2121
echo "Requirements:"
2222
echo " - curl must be installed"
2323
echo " - Internet connection required"
2424
exit 0
2525
fi
2626

27-
SPECTRAL_VERSION=${1:-"v6.15.0-rc1"}
27+
SPECTRAL_VERSION=${1:-"v6.15.0"}
2828

2929
# Strip any trailing suffixes like -rc1, -beta, etc. from the version for GitHub release downloads
3030
# This converts versions like "v6.15.0-rc1" to "v6.15.0" for the download URL

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.github.nddipiazza</groupId>
88
<artifactId>spectral-maven-plugin-parent</artifactId>
9-
<version>6.15.0-rc1</version>
9+
<version>6.15.0-rc2</version>
1010
<packaging>pom</packaging>
1111

1212
<name>Spectral Maven Plugin Parent</name>

spectral-executables/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>io.github.nddipiazza</groupId>
1010
<artifactId>spectral-maven-plugin-parent</artifactId>
11-
<version>6.15.0-rc1</version>
11+
<version>6.15.0-rc2</version>
1212
</parent>
1313

1414
<artifactId>spectral-executables</artifactId>

spectral-executables/spectral-alpine-arm64/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>io.github.nddipiazza</groupId>
1010
<artifactId>spectral-executables</artifactId>
11-
<version>6.15.0-rc1</version>
11+
<version>6.15.0-rc2</version>
1212
</parent>
1313

1414
<artifactId>spectral-alpine-arm64</artifactId>

spectral-executables/spectral-alpine-x64/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>io.github.nddipiazza</groupId>
1010
<artifactId>spectral-executables</artifactId>
11-
<version>6.15.0-rc1</version>
11+
<version>6.15.0-rc2</version>
1212
</parent>
1313

1414
<artifactId>spectral-alpine-x64</artifactId>

spectral-executables/spectral-linux-arm64/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>io.github.nddipiazza</groupId>
1010
<artifactId>spectral-executables</artifactId>
11-
<version>6.15.0-rc1</version>
11+
<version>6.15.0-rc2</version>
1212
</parent>
1313

1414
<artifactId>spectral-linux-arm64</artifactId>

spectral-executables/spectral-linux-x64/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>io.github.nddipiazza</groupId>
1010
<artifactId>spectral-executables</artifactId>
11-
<version>6.15.0-rc1</version>
11+
<version>6.15.0-rc2</version>
1212
</parent>
1313

1414
<artifactId>spectral-linux-x64</artifactId>

spectral-executables/spectral-macos-arm64/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>io.github.nddipiazza</groupId>
1010
<artifactId>spectral-executables</artifactId>
11-
<version>6.15.0-rc1</version>
11+
<version>6.15.0-rc2</version>
1212
</parent>
1313

1414
<artifactId>spectral-macos-arm64</artifactId>

0 commit comments

Comments
 (0)