Skip to content

Commit ec8f85c

Browse files
refactor: correct references from VERSIONS.MD to VERSIOND.md in documentation and code
1 parent 1ff2b3f commit ec8f85c

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
lines changed

.ai/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ current task.
1515
| `cross-platform.md` | ~55 | ~600 | Bot API, Java, Python, .NET, C#, cross-platform, port, reference implementation |
1616
| `coding-conventions.md` | ~35 | ~350 | style, conventions, naming, format, PEP 8, immutability |
1717
| `testing-and-build.md` | ~40 | ~450 | test, build, Gradle, gradlew, compile, validation |
18-
| `documentation.md` | ~30 | ~300 | docs, README, markdown, mermaid, VERSIONS.MD, Javadoc, docstring, changelog |
18+
| `documentation.md` | ~30 | ~300 | docs, README, markdown, mermaid, VERSIOND.md, Javadoc, docstring, changelog |
1919
| `standards.md` | ~25 | ~250 | encoding, UTF-8, standards, file format, characters |
2020

2121
**Total if all loaded:** ~225 lines, ~2350 tokens
@@ -92,7 +92,7 @@ Note: A colon (e.g., "Remember: ...") makes it more command-like.
9292
| Bot API, Java/Python/.NET, porting | `cross-platform.md` |
9393
| Style, naming, language-specific | `coding-conventions.md` |
9494
| Tests, Gradle, build | `testing-and-build.md` |
95-
| README, VERSIONS.MD, docs | `documentation.md` |
95+
| README, VERSIOND.md, docs | `documentation.md` |
9696
| Encoding, file formats | `standards.md` |
9797

9898
### Best Practices
@@ -121,7 +121,7 @@ Build and test procedures: Gradle commands, test requirements, validation steps.
121121

122122
### `documentation.md`
123123

124-
Documentation standards: README updates, VERSIONS.MD format, Javadoc/docstring alignment.
124+
Documentation standards: README updates, VERSIOND.md format, Javadoc/docstring alignment.
125125

126126
### `standards.md`
127127

.ai/documentation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
**Files to update:**
1616

1717
- `/README.md` - Project overview and getting started
18-
- `/VERSIONS.MD` - Version history and changelog
18+
- `/VERSIOND.md` - Version history and changelog
1919
- Module-specific `README.md` files
2020
- API documentation (Javadoc/docstrings)
2121

22-
## VERSIONS.MD Format
22+
## VERSIOND.md Format
2323

2424
**Follow existing format:**
2525

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Load specific instruction files from `.ai/` based on your task:
3535
| Bot API changes, Java/Python/.NET | `.ai/cross-platform.md` |
3636
| Java, Python, C# style conventions | `.ai/coding-conventions.md` |
3737
| Testing, building, Gradle | `.ai/testing-and-build.md` |
38-
| Docs, VERSIONS.MD, Javadoc | `.ai/documentation.md` |
38+
| Docs, VERSIOND.md, Javadoc | `.ai/documentation.md` |
3939
| File encoding, standards | `.ai/standards.md` |
4040
| **Planning, specs, proposals** | `@/openspec/AGENTS.md` ⚠️ |
4141

VERSIONS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 📦 0.35.0 - **BREAKING**: Python Bot API Converted to Synchronous API & Refactored to Use Properties - 25-Jan-2026
1+
## 📦 0.35.0 - **BREAKING**: Python Bot API Converted to Synchronous API & Refactored to Use Properties - 26-Jan-2026
22

33
### 💥 Breaking Changes (Python Bot API)
44

buildSrc/src/main/kotlin/build/release/GenerateReleaseNotes.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import java.nio.file.Files
99

1010
fun generateReleaseNotes(projectDir: File, version: String): String {
1111

12-
val versionsFilename = File(projectDir, "VERSIONS.MD").absolutePath
12+
val versionsFilename = File(projectDir, "VERSIOND.md").absolutePath
1313

1414
val extractedVersion = extractVersion(versionsFilename)
1515
check(extractedVersion == version) {

openspec/changes/archive/2025-12-21-document-gui-installers/proposal.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ potentially leading to confusion and support issues.
1919

2020
## What Changes
2121

22-
- Update `VERSIONS.MD` to document the availability of native GUI installer packages
22+
- Update `VERSIOND.md` to document the availability of native GUI installer packages
2323
- Update `buildSrc/src/main/resources/release/release-docs-template.md` to include:
2424
- Information about native installer packages for Windows, macOS, and Linux
2525
- Java 11+ requirement and JAVA_HOME setup instructions
@@ -32,7 +32,7 @@ potentially leading to confusion and support issues.
3232
## Impact
3333

3434
- **Affected documentation files**:
35-
- `VERSIONS.MD` - Add note about new installer packages in the latest version section
35+
- `VERSIOND.md` - Add note about new installer packages in the latest version section
3636
- `buildSrc/src/main/resources/release/release-docs-template.md` - Add installer section before "Running Robocode"
3737
- `docs-build/docs/articles/installation.md` - Add new section for native installers
3838

openspec/changes/archive/2025-12-21-document-gui-installers/specs/user-documentation/spec.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ become available.
5252

5353
#### Scenario: User checks version history
5454

55-
- **WHEN** a user reads the VERSIONS.MD file
55+
- **WHEN** a user reads the VERSIOND.md file
5656
- **THEN** they SHALL find an entry documenting the availability of native GUI installer packages
5757
- **AND** they SHALL see which platforms are supported (Windows, macOS, Linux)
5858
- **AND** they SHALL see which package formats are available (msi, pkg, rpm, deb)

openspec/changes/archive/2025-12-21-document-gui-installers/tasks.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Implementation Tasks
22

3-
## 1. Update VERSIONS.MD
3+
## 1. Update VERSIOND.md
44

55
- [x] 1.1 Add entry in the latest version section documenting the new GUI installer packages
66
- [x] 1.2 Mention available formats: Windows (msi), macOS (pkg), Linux (rpm and deb)
@@ -41,6 +41,6 @@ Notes:
4141
- The release docs template (`buildSrc/.../release-docs-template.md`) and the installation guide (
4242
`docs-build/.../installation.md`) were updated and aligned. Filenames and download links now use the `{VERSION}`
4343
placeholder and include platform-specific installer guidance and `JAVA_HOME` setup instructions.
44-
- Remaining work: update `VERSIONS.MD` to document the new GUI installer packages (see section 1). Also consider
44+
- Remaining work: update `VERSIOND.md` to document the new GUI installer packages (see section 1). Also consider
4545
gradually replacing remaining `x.y.z` occurrences across other docs (some tutorials and READMEs still reference
4646
`x.y.z`).

openspec/specs/user-documentation/spec.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ become available.
5656

5757
#### Scenario: User checks version history
5858

59-
- **WHEN** a user reads the VERSIONS.MD file
59+
- **WHEN** a user reads the VERSIOND.md file
6060
- **THEN** they SHALL find an entry documenting the availability of native GUI installer packages
6161
- **AND** they SHALL see which platforms are supported (Windows, macOS, Linux)
6262
- **AND** they SHALL see which package formats are available (msi, pkg, rpm, deb)

0 commit comments

Comments
 (0)