Skip to content

Commit

Permalink
Reindexer v3.30 update
Browse files Browse the repository at this point in the history
  • Loading branch information
oruchreis committed Dec 2, 2024
1 parent c778331 commit be452bd
Show file tree
Hide file tree
Showing 15 changed files with 109 additions and 24 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.4.10.3300 Embedded] - 2024-12-02
### Added
- Updated Reindexer Embedded to 3.30

## [0.4.10] - 2024-11-28
## Added
### Added
- .NET 9.0 target
- Added more tests for nullable types(sparse indicies)
- Symbol packages
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,19 +40,19 @@ If you have any questions about Reindexer, please use [main page](https://github
```xml
<ItemGroup>
<PackageReference
Include="ReindexerNet.Embedded.Native.AlpineLinux-x64" Version="0.4.8.3290"
Include="ReindexerNet.Embedded.Native.AlpineLinux-x64" Version="0.4.10.3300"
Condition="$([MSBuild]::IsOSPlatform('Linux')) and ($(RuntimeIdentifier.StartsWith('linux-musl')) or $(RuntimeIdentifier.StartsWith('alpine')))" />
<PackageReference
Include="ReindexerNet.Embedded.Native.Linux-x64" Version="0.4.8.3290"
Include="ReindexerNet.Embedded.Native.Linux-x64" Version="0.4.10.3300"
Condition="$([MSBuild]::IsOSPlatform('Linux')) and !($(RuntimeIdentifier.StartsWith('linux-musl')) or $(RuntimeIdentifier.StartsWith('alpine')))" />
<PackageReference
Include="ReindexerNet.Embedded.Native.Osx-x64" Version="0.4.8.3290"
Include="ReindexerNet.Embedded.Native.Osx-x64" Version="0.4.10.3300"
Condition="$([MSBuild]::IsOSPlatform('OSX'))" />
<PackageReference
Include="ReindexerNet.Embedded.Native.Win-x64" Version="0.4.8.3290"
Include="ReindexerNet.Embedded.Native.Win-x64" Version="0.4.10.3300"
Condition="$([MSBuild]::IsOSPlatform('Windows'))" />
<PackageReference
Include="ReindexerNet.Embedded.Native.Win-x86" Version="0.4.8.3290"
Include="ReindexerNet.Embedded.Native.Win-x86" Version="0.4.10.3300"
Condition="$([MSBuild]::IsOSPlatform('Windows'))" />
</ItemGroup>
```
Expand Down Expand Up @@ -135,10 +135,10 @@ You can find Reindexer Documentation at [their github page](https://github.com/R
The first three parts of the package versions refer to ReindexerNet's own version. If the version has a fourth part, this refers to the Reindexer version it supports or defines.
For example:
```
v 0.4.8. 3290
v 0.4.10. 3300
╚══╦══╝ ╚═╦═╝
╚══════╬═══ ReindexerNET version 0.4.8
╚═══ Reindexer version 3.29.0
╚══════╬═══ ReindexerNET version 0.4.10
╚═══ Reindexer version 3.30.0
```

### ReindexerNet.Embedded [![Embedded Nuget](https://img.shields.io/nuget/v/ReindexerNet.Embedded?label=Embedded&color=1182c2&style=flat-square&logo=nuget)](https://www.nuget.org/packages/ReindexerNet.Embedded)
Expand Down
Loading

0 comments on commit be452bd

Please sign in to comment.