Skip to content

Commit bda84d2

Browse files
committed
Merge remote-tracking branch 'upstream/master' into bugfix/cli-221-add-value-lists
2 parents 82c1273 + 7838a61 commit bda84d2

File tree

4 files changed

+14
-9
lines changed

4 files changed

+14
-9
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
5858
# Initializes the CodeQL tools for scanning.
5959
- name: Initialize CodeQL
60-
uses: github/codeql-action/init@4e828ff8d448a8a6e532957b1811f387a63867e8 # 3.29.4
60+
uses: github/codeql-action/init@51f77329afa6477de8c49fc9c7046c15b9a4e79d # 3.29.5
6161
with:
6262
languages: ${{ matrix.language }}
6363
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -68,7 +68,7 @@ jobs:
6868
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
6969
# If this step fails, then you should remove it and run the build manually (see below)
7070
- name: Autobuild
71-
uses: github/codeql-action/autobuild@4e828ff8d448a8a6e532957b1811f387a63867e8 # 3.29.4
71+
uses: github/codeql-action/autobuild@51f77329afa6477de8c49fc9c7046c15b9a4e79d # 3.29.5
7272

7373
# ℹ️ Command-line programs to run using the OS shell.
7474
# 📚 https://git.io/JvXDl
@@ -82,4 +82,4 @@ jobs:
8282
# make release
8383

8484
- name: Perform CodeQL Analysis
85-
uses: github/codeql-action/analyze@4e828ff8d448a8a6e532957b1811f387a63867e8 # 3.29.4
85+
uses: github/codeql-action/analyze@51f77329afa6477de8c49fc9c7046c15b9a4e79d # 3.29.5

.github/workflows/scorecards-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,6 @@ jobs:
6464
retention-days: 5
6565

6666
- name: "Upload to code-scanning"
67-
uses: github/codeql-action/upload-sarif@4e828ff8d448a8a6e532957b1811f387a63867e8 # 3.29.4
67+
uses: github/codeql-action/upload-sarif@51f77329afa6477de8c49fc9c7046c15b9a4e79d # 3.29.5
6868
with:
6969
sarif_file: results.sarif

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<modelVersion>4.0.0</modelVersion>
2525
<groupId>commons-cli</groupId>
2626
<artifactId>commons-cli</artifactId>
27-
<version>1.10.0-SNAPSHOT</version>
27+
<version>1.10.1-SNAPSHOT</version>
2828
<name>Apache Commons CLI</name>
2929
<inceptionYear>2002</inceptionYear>
3030
<description>
@@ -82,17 +82,17 @@
8282
</dependencies>
8383
<properties>
8484
<!-- project.build.outputTimestamp is managed by Maven plugins, see https://maven.apache.org/guides/mini/guide-reproducible-builds.html -->
85-
<project.build.outputTimestamp>2025-01-11T14:52:17Z</project.build.outputTimestamp>
85+
<project.build.outputTimestamp>2025-08-02T23:19:17Z</project.build.outputTimestamp>
8686
<maven.compiler.source>1.8</maven.compiler.source>
8787
<maven.compiler.target>1.8</maven.compiler.target>
8888
<commons.componentid>cli</commons.componentid>
8989
<commons.module.name>org.apache.commons.cli</commons.module.name>
90-
<commons.release.version>1.10.0</commons.release.version>
91-
<commons.release.next>1.10.1</commons.release.next>
90+
<commons.release.version>1.10.1</commons.release.version>
91+
<commons.release.next>1.10.2</commons.release.next>
9292
<commons.release.name>commons-cli-${commons.release.version}</commons.release.name>
9393
<commons.release.isDistModule>true</commons.release.isDistModule>
9494
<commons.rc.version>RC1</commons.rc.version>
95-
<commons.bc.version>1.9.0</commons.bc.version>
95+
<commons.bc.version>1.10.0</commons.bc.version>
9696
<commons.osgi.symbolicName>org.apache.commons.cli</commons.osgi.symbolicName>
9797
<commons.jira.id>CLI</commons.jira.id>
9898
<commons.jira.pid>12310463</commons.jira.pid>

src/changes/changes.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@
2222
<title>Apache Commons CLI Release Notes</title>
2323
</properties>
2424
<body>
25+
<release version="1.10.1" date="YYYY-MM-DD" description="This is a feature and maintenance release. Java 8 or later is required.">
26+
<!-- FIX -->
27+
<!-- ADD -->
28+
<!-- UPDATE -->
29+
</release>
2530
<release version="1.10.0" date="2025-07-30" description="This is a feature and maintenance release. Java 8 or later is required.">
2631
<!-- FIX -->
2732
<action type="fix" dev="ggregory" due-to="Gary Gregory">Deprecate CommandLine.Builder() in favor of CommandLine.builder().</action>

0 commit comments

Comments
 (0)