Skip to content

Commit e6f2c4d

Browse files
committed
Release 2.3.0
Changes since 2.2.0: - Bug fix: BinaryDataUtilities.AsArray misbehavior with array segments ([#209](#209)) - Bug fix: Links within XML documentation corrected after spec repo change - Feature: Reject "data" as a context attribute name (spec has been clarified for this) - Feature: Support Data content type inference in event formatters - The JsonEventFormatter classes infer "application/json" for all data - Feature: CloudNative.CloudEvents.Protobuf is now GA (same version as other packages) Signed-off-by: Jon Skeet <[email protected]>
1 parent 92dd95a commit e6f2c4d

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

docs/history.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Version history (from 2.0)
22

3+
## 2.3.0 (2022-05-31)
4+
5+
- Bug fix: BinaryDataUtilities.AsArray misbehavior with array segments ([#209](https://github.com/cloudevents/sdk-csharp/issues/209))
6+
- Bug fix: Links within XML documentation corrected after spec repo change
7+
- Feature: Reject "data" as a context attribute name (spec has been clarified for this)
8+
- Feature: Support Data content type inference in event formatters
9+
- The JsonEventFormatter classes infer "application/json" for all data
10+
- Feature: CloudNative.CloudEvents.Protobuf is now GA (same version as other packages)
11+
312
## 2.2.0 (2022-02-02)
413

514
- Bug fix: the "source" attribute is now validated to be non-empty
@@ -9,7 +18,7 @@
918

1019
## 2.1.1 (2021-07-21)
1120

12-
Bug fix ([#77](https://github.com/cloudevents/sdk-csharp/pull/177)): dependency on the
21+
Bug fix ([#177](https://github.com/cloudevents/sdk-csharp/pull/177)): dependency on the
1322
`Nullable` package was not declared with `PrivateAssets=all`,
1423
leading to that showing up as a dependency. This would break users
1524
who explicitly have a dependency on an older version of `Nullable`.

src/CloudNative.CloudEvents.Protobuf/CloudNative.CloudEvents.Protobuf.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
<PackageTags>cncf;cloudnative;cloudevents;events;protobuf</PackageTags>
77
<LangVersion>8.0</LangVersion>
88
<Nullable>enable</Nullable>
9-
<Version>2.0.0-beta.1</Version>
109
</PropertyGroup>
1110

1211
<ItemGroup>

src/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
- We use the same version number for all stable
55
- packages. See PROCESSES.md for details.
66
-->
7-
<Version>2.2.0</Version>
7+
<Version>2.3.0</Version>
88

99
<!-- Make the repository root available for other properties -->
1010
<RepoRoot>$([System.IO.Path]::GetDirectoryName($([MSBuild]::GetPathOfFileAbove('.gitignore', '$(MSBuildThisFileDirectory)'))))</RepoRoot>

0 commit comments

Comments
 (0)