Skip to content

update the changelog for 1.0.1 release for azure.provisioning #50215

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -787,7 +787,7 @@
# ServiceOwners: @sunilagarwal @lfittl-msft @sr-msft @niklarin

# PRLabel: %Provisioning
/sdk/provisioning/ @ArthurMa1978 @ArcturusZhang
/sdk/provisioning/ @ArthurMa1978 @m-nash @ArcturusZhang

# ServiceLabel: %Provisioning
# AzureSdkOwners: @ArthurMa1978
Expand Down
9 changes: 3 additions & 6 deletions sdk/provisioning/Azure.Provisioning/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
# Release History

## 1.1.0-beta.1 (Unreleased)

### Features Added

### Breaking Changes
## 1.0.1 (2025-05-22)

### Bugs Fixed

### Other Changes
- Now floating number values are properly serialized into bicep via `json()` function ([#48249](https://github.com/Azure/azure-sdk-for-net/issues/48249))
- Fixed issues in interpolated strings ([#48493](https://github.com/Azure/azure-sdk-for-net/issues/48493))

## 1.0.0 (2024-10-25)

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Description>Contains the core functionality for defining Azure infrastructure with dotnet code.</Description>
<Version>1.1.0-beta.1</Version>
<Version>1.0.1</Version>
<!--The ApiCompatVersion is managed automatically and should not generally be modified manually.-->
<ApiCompatVersion>1.0.0</ApiCompatVersion>
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>
Expand All @@ -14,4 +14,9 @@
<!-- Disable warning IDE0130: Namespace does not match folder structure-->
<NoWarn>CS1591;AZC0012;IDE0130;$(NoWarn)</NoWarn>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Azure.Core" />
</ItemGroup>

</Project>
11 changes: 1 addition & 10 deletions sdk/provisioning/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,5 @@
<ItemGroup Condition="'$(AssemblyName)' != 'Generator'">
<Compile Include="$(AzureCoreSharedSources)ExperimentalAttribute.cs" LinkBase="Shared\Core" />
</ItemGroup>
<ItemGroup>
<!--
Azure.Core isn't being found on builds with
dotnet build .\Azure.Provisioning.sln /p:UseProjectReferenceToAzureClients=true
for some reason. Temporarily adding an explicit Azure.Core reference so
it's correctly replaced in all projects for those build targets.
-->
<PackageReference Include="Azure.Core" Condition="$(UseProjectReferenceToAzureClients) == 'true'" />
</ItemGroup>


</Project>
Loading