Skip to content

Commit 2f5cb01

Browse files
committed
Release Functions Framework .NET packages version 1.0.0
Changes since 1.0.0-beta05: - Update to Google.Events.Protobuf 1.0.0 and CloudNative.CloudEvents 2.0.0 - Update the Source CloudEvent attribute for Firebase RTDB events Packages in this release: - Release Google.Cloud.Functions.Framework version 1.0.0 - Release Google.Cloud.Functions.Hosting version 1.0.0 - Release Google.Cloud.Functions.Templates version 1.0.0 - Release Google.Cloud.Functions.Testing version 1.0.0
1 parent 36b60d4 commit 2f5cb01

File tree

32 files changed

+36
-31
lines changed

32 files changed

+36
-31
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The Functions Framework for .NET requires the [.NET Core SDK 3.1](https://dotnet
3232
First, install the template package into the .NET tooling:
3333

3434
```sh
35-
dotnet new -i Google.Cloud.Functions.Templates::1.0.0-beta05
35+
dotnet new -i Google.Cloud.Functions.Templates::1.0.0
3636
```
3737

3838
Next, create a directory for your project, and use `dotnet new` to

docs/history.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Version History
22

3+
## 1.0.0 (relesaed 2021-06-22)
4+
5+
- Update to Google.Events.Protobuf 1.0.0 and CloudNative.CloudEvents 2.0.0
6+
- Update the Source CloudEvent attribute for Firebase RTDB events
7+
38
## 1.0.0-beta05 (released 2021-06-07)
49

510
- Update to release candidate of CloudNative.CloudEvents package,

examples/Google.Cloud.Functions.Examples.AdvancedDependencyInjection/Google.Cloud.Functions.Examples.AdvancedDependencyInjection.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>netcoreapp3.1</TargetFramework>
55
</PropertyGroup>
66
<ItemGroup>
7-
<PackageReference Include="Google.Cloud.Functions.Hosting" Version="1.0.0-beta05" />
7+
<PackageReference Include="Google.Cloud.Functions.Hosting" Version="1.0.0" />
88
<None Include="appsettings*.json" CopyToOutputDirectory="PreserveNewest" />
99
</ItemGroup>
1010

examples/Google.Cloud.Functions.Examples.Configuration/Google.Cloud.Functions.Examples.Configuration.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Google.Cloud.Functions.Hosting" Version="1.0.0-beta05" />
8+
<PackageReference Include="Google.Cloud.Functions.Hosting" Version="1.0.0" />
99
<None Include="appsettings*.json" CopyToOutputDirectory="PreserveNewest" />
1010
</ItemGroup>
1111
</Project>

examples/Google.Cloud.Functions.Examples.CustomConfiguration/Google.Cloud.Functions.Examples.CustomConfiguration.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>netcoreapp3.1</TargetFramework>
55
</PropertyGroup>
66
<ItemGroup>
7-
<PackageReference Include="Google.Cloud.Functions.Hosting" Version="1.0.0-beta05" />
7+
<PackageReference Include="Google.Cloud.Functions.Hosting" Version="1.0.0" />
88
<PackageReference Include="Steeltoe.Extensions.Configuration.RandomValueBase" Version="2.4.4" />
99
<None Include="appsettings*.json" CopyToOutputDirectory="PreserveNewest" />
1010
</ItemGroup>

examples/Google.Cloud.Functions.Examples.CustomEventDataFunction/Google.Cloud.Functions.Examples.CustomEventDataFunction.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Google.Cloud.Functions.Hosting" Version="1.0.0-beta05" />
8+
<PackageReference Include="Google.Cloud.Functions.Hosting" Version="1.0.0" />
99
<PackageReference Include="CloudNative.CloudEvents.NewtonsoftJson" Version="2.0.0" />
1010
<None Include="appsettings*.json" CopyToOutputDirectory="PreserveNewest" />
1111
</ItemGroup>

examples/Google.Cloud.Functions.Examples.FSharpEventFunction/Google.Cloud.Functions.Examples.FSharpEventFunction.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</ItemGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="Google.Cloud.Functions.Hosting" Version="1.0.0-beta05" />
13+
<PackageReference Include="Google.Cloud.Functions.Hosting" Version="1.0.0" />
1414
<PackageReference Include="Google.Events.Protobuf" Version="1.0.0" />
1515
</ItemGroup>
1616
</Project>

examples/Google.Cloud.Functions.Examples.FSharpHttpFunction/Google.Cloud.Functions.Examples.FSharpHttpFunction.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
</ItemGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="Google.Cloud.Functions.Hosting" Version="1.0.0-beta05" />
13+
<PackageReference Include="Google.Cloud.Functions.Hosting" Version="1.0.0" />
1414
</ItemGroup>
1515
</Project>

examples/Google.Cloud.Functions.Examples.FSharpUntypedEventFunction/Google.Cloud.Functions.Examples.FSharpUntypedEventFunction.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
</ItemGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="Google.Cloud.Functions.Hosting" Version="1.0.0-beta05" />
13+
<PackageReference Include="Google.Cloud.Functions.Hosting" Version="1.0.0" />
1414
</ItemGroup>
1515
</Project>

examples/Google.Cloud.Functions.Examples.IntegrationTests/Google.Cloud.Functions.Examples.IntegrationTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
</ItemGroup>
1818

1919
<ItemGroup>
20-
<PackageReference Include="Google.Cloud.Functions.Testing" Version="1.0.0-beta05" />
20+
<PackageReference Include="Google.Cloud.Functions.Testing" Version="1.0.0" />
2121
<ProjectReference Include="..\Google.Cloud.Functions.Examples.AdvancedDependencyInjection\Google.Cloud.Functions.Examples.AdvancedDependencyInjection.csproj" />
2222
<ProjectReference Include="..\Google.Cloud.Functions.Examples.SimpleDependencyInjection\Google.Cloud.Functions.Examples.SimpleDependencyInjection.csproj" />
2323
<ProjectReference Include="..\Google.Cloud.Functions.Examples.SimpleHttpFunction\Google.Cloud.Functions.Examples.SimpleHttpFunction.csproj" />

0 commit comments

Comments
 (0)