Skip to content

Commit

Permalink
Release 0.8.1. Minor documentation update for ISources and IReadOnlyS…
Browse files Browse the repository at this point in the history
…ources.
  • Loading branch information
Arlodotexe committed May 22, 2024
1 parent d9292c3 commit c119621
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/IReadOnlySources.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace OwlCore.ComponentModel;
public interface IReadOnlySources<T>
{
/// <summary>
/// The sources for this event stream. Each contains timestamped event data from all participating nodes.
/// The sources for the object.
/// </summary>
IReadOnlyCollection<T> Sources { get; init; }
}
2 changes: 1 addition & 1 deletion src/ISources.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace OwlCore.ComponentModel;
public interface ISources<T>
{
/// <summary>
/// The sources for this event stream. Each contains timestamped event data from all participating nodes.
/// The sources for the object.
/// </summary>
ICollection<T> Sources { get; init; }
}
6 changes: 5 additions & 1 deletion src/OwlCore.ComponentModel.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,17 @@
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>

<Author>Arlo Godfrey</Author>
<Version>0.8.0</Version>
<Version>0.8.1</Version>
<Product>OwlCore</Product>
<Description>Provides classes that are used to implement the run-time behavior of components.</Description>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageIcon>logo.png</PackageIcon>
<PackageProjectUrl>https://github.com/Arlodotexe/OwlCore.ComponentModel</PackageProjectUrl>
<PackageReleaseNotes>
--- 0.8.1 ---
[Improvements]
Minor documentation update for ISources and IReadOnlySources.

--- 0.8.0 ---
[New]
Added IFlushable
Expand Down

0 comments on commit c119621

Please sign in to comment.