Skip to content

Commit

Permalink
πŸ±β€πŸ‘€ bump to version 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Jochen KirstΓ€tter committed Mar 5, 2024
1 parent fe4f033 commit 1d91eba
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Alternatively, add the following line to your `.csproj` file.

```text
<ItemGroup>
<PackageReference Include="Mscc.GenerativeAI" Version="0.5.0" />
<PackageReference Include="Mscc.GenerativeAI" Version="0.5.1" />
</ItemGroup>
```

Expand Down
7 changes: 3 additions & 4 deletions src/Mscc.GenerativeAI.Web/Mscc.GenerativeAI.Web.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,9 @@
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
<PackageReleaseNotes>
- Initial implementation
- Improve GenerativeModelService with Options
- Update package reference
</PackageReleaseNotes>
<Version>0.5.0</Version>
<Version>0.5.1</Version>
</PropertyGroup>

<PropertyGroup Condition="$(TargetFramework.StartsWith('net6.0')) or $(TargetFramework.StartsWith('net7.0')) or $(TargetFramework.StartsWith('net8.0'))">
Expand All @@ -48,7 +47,7 @@
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Options" Version="8.0.2" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="8.0.0" />
<PackageReference Include="Mscc.GenerativeAI" Version="0.4.5" />
<PackageReference Include="Mscc.GenerativeAI" Version="0.5.*" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Mscc.GenerativeAI.Web/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Alternatively, add the following line to your `.csproj` file.

```text
<ItemGroup>
<PackageReference Include="Mscc.GenerativeAI.Web" Version="0.5.0" />
<PackageReference Include="Mscc.GenerativeAI.Web" Version="0.5.1" />
</ItemGroup>
```

Expand Down
4 changes: 4 additions & 0 deletions src/Mscc.GenerativeAI.Web/RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release Notes

## 0.5.1

- Update package reference

## 0.5.0

- Initial implementation
7 changes: 5 additions & 2 deletions src/Mscc.GenerativeAI/Mscc.GenerativeAI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@
<RepositoryUrl>https://github.com/mscraftsman/generative-ai</RepositoryUrl>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
<PackageReleaseNotes>- extend methods</PackageReleaseNotes>
<Version>0.5.0</Version>
<PackageReleaseNotes>
- Handle GenerationConfig, SafetySeetings and Tools
- Append streamGenerateContent
</PackageReleaseNotes>
<Version>0.5.1</Version>
</PropertyGroup>

<PropertyGroup Condition="$(TargetFramework.StartsWith('net6.0')) or $(TargetFramework.StartsWith('net7.0')) or $(TargetFramework.StartsWith('net8.0'))">
Expand Down
5 changes: 5 additions & 0 deletions src/Mscc.GenerativeAI/RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Release Notes

## 0.5.1

- Handle GenerationConfig, SafetySeetings and Tools
- Append streamGenerateContent

## 0.5.0

- Refactor folder structure
Expand Down

0 comments on commit 1d91eba

Please sign in to comment.