Skip to content

Commit

Permalink
Fix: Plugin generation (#5986)
Browse files Browse the repository at this point in the history
  • Loading branch information
thewahome authored Jan 10, 2025
1 parent 6a75ebf commit a7e254e
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

## [1.22.1] - 2025-01-10

### Added

### Changed
- Fixed a bug in the VS Code extension plugin generation [#5978](https://github.com/microsoft/kiota/issues/5978)

## [1.22.0] - 2025-01-09

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/Kiota.Builder/Kiota.Builder.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<Title>Microsoft.OpenApi.Kiota.Builder</Title>
<PackageId>Microsoft.OpenApi.Kiota.Builder</PackageId>
<PackageOutputPath>./nupkg</PackageOutputPath>
<VersionPrefix>1.23.0</VersionPrefix>
<VersionPrefix>1.22.1</VersionPrefix>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<PackageReleaseNotes>
https://github.com/microsoft/kiota/releases
Expand Down
2 changes: 1 addition & 1 deletion src/kiota/kiota.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<Title>Microsoft.OpenApi.Kiota</Title>
<PackageId>Microsoft.OpenApi.Kiota</PackageId>
<PackageOutputPath>./nupkg</PackageOutputPath>
<VersionPrefix>1.23.0</VersionPrefix>
<VersionPrefix>1.22.1</VersionPrefix>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<PackageReleaseNotes>
https://github.com/microsoft/kiota/releases
Expand Down
7 changes: 7 additions & 0 deletions vscode/microsoft-kiota/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ All notable changes to this project will be documented in this file.

### Changed

## [1.22.100000001] - 2025-01-10

### Added

### Changed
- Fixed a bug in the VS Code extension plugin generation [#5978](https://github.com/microsoft/kiota/issues/5978)

## [1.20.000000001] - 2024-11-07

## [1.19.100000001] - 2024-10-03
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ export class GenerateClientCommand extends Command {
settings.cleanOutput,
settings.disableValidationRules,
ConsumerOperation.Add,
undefined,
null,
'',
config.workingDirectory
);
Expand Down Expand Up @@ -247,7 +247,7 @@ export class GenerateClientCommand extends Command {
settings.cleanOutput,
settings.disableValidationRules,
ConsumerOperation.Add,
undefined,
null,
'',
config.workingDirectory
);
Expand Down

0 comments on commit a7e254e

Please sign in to comment.