@@ -225,7 +225,7 @@ Usage: `azd x release --repo {owner}/{name}`
225
225
- ` --title, -t ` - The name of the release, defaults to extension name plus version.
226
226
- ` --prerelease ` - When set marks the release as a prerelease.
227
227
- ` --draft, -d ` - When set marks the release a draft
228
- - ` --notes, -n ` - The release notes for the release, defaults to using contents of ` changelog .md` within extension directory.
228
+ - ` --notes, -n ` - The release notes for the release, defaults to using contents of ` CHANGELOG .md` within extension directory.
229
229
- ` --version, -v ` - The version of the release, defaults to extension version from extension manifest
230
230
- ` --confirm ` - When set bypasses confirmation prompts before release
231
231
@@ -251,7 +251,7 @@ contoso.azd.samples.<language>/
251
251
├── bin/ # Contains built binaries
252
252
├── build.ps1 # Windows build script
253
253
├── build.sh # Unix build script
254
- ├── changelog .md # Version history and release notes
254
+ ├── CHANGELOG .md # Version history and release notes
255
255
├── extension.yaml # Extension metadata and capabilities
256
256
├── README.md # Documentation for your extension
257
257
└── <language-specific> # Source code files specific to the chosen language
@@ -260,7 +260,7 @@ contoso.azd.samples.<language>/
260
260
Key files in the extension structure:
261
261
262
262
- ** extension.yaml** : Defines metadata, capabilities, and commands for your extension
263
- - ** changelog .md** : Documents changes between versions (used for release notes)
263
+ - ** CHANGELOG .md** : Documents changes between versions (used for release notes)
264
264
- ** build scripts** : Language-specific scripts for building your extension
265
265
266
266
Each supported language has a slightly different structure:
@@ -306,7 +306,7 @@ Managing versions of your extension is an important part of the development proc
306
306
- Follow [ Semantic Versioning] ( https://semver.org/ ) (MAJOR.MINOR.PATCH)
307
307
308
308
2 . ** Document Changes** :
309
- - Update your ` changelog .md` with details about what's new or fixed
309
+ - Update your ` CHANGELOG .md` with details about what's new or fixed
310
310
- Include any breaking changes or migration notes
311
311
312
312
3 . ** Build, Package and Test** :
@@ -331,7 +331,7 @@ Managing versions of your extension is an important part of the development proc
331
331
- ** Minor Version Changes (1.0.0 → 1.1.0)** : Adds new features while maintaining backward compatibility
332
332
- ** Patch Version Changes (1.0.0 → 1.0.1)** : Includes bug fixes with no feature changes
333
333
334
- When upgrading across major versions, users may need to adapt to API changes. Document these changes clearly in your ` changelog .md` .
334
+ When upgrading across major versions, users may need to adapt to API changes. Document these changes clearly in your ` CHANGELOG .md` .
335
335
336
336
### GitHub Authentication Requirements
337
337
0 commit comments