* Upgrade API version to 1.0.1

* Update api Changelog versions to match our new format
This commit is contained in:
Nathan 2024-04-10 09:42:24 -07:00 коммит произвёл GitHub
Родитель 32a5d230f3
Коммит c2daab49fd
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 3 добавлений и 5 удалений

Просмотреть файл

@ -1,12 +1,12 @@
# Change Log
### 0.0.2
### 1.0.1
### Changed
* [[615]](https://github.com/microsoft/vscode-azurecontainerapps/pull/615) Removed ability to set option `ignoreExistingDeploySettings`. This will now happen automatically by default.
## 0.0.1
## 1.0.0
* Initial release
### Added

Просмотреть файл

@ -9,9 +9,7 @@ import type * as api from "./vscode-azurecontainerapps.api";
export function getAzureContainerAppsApiProvider(): apiUtils.AzureExtensionApiProvider {
return createApiProvider([<api.AzureContainerAppsExtensionApi>{
// Todo: Change this to 0.0.2 later. 0.0.2 is backwards compatible anyway so this change should be fine either way.
// For some reason it's causing a block on Function side, so just keep it at 0.0.1 until we figure out why
apiVersion: '0.0.1',
apiVersion: '1.0.1',
deployWorkspaceProject: deployWorkspaceProjectApi
}]);
}