Skip to content

Releases: tinysearch/tinysearch

Version 0.8.2

26 Jul 00:00
@mre mre
Compare
Choose a tag to compare

What's Changed

  • Fix assets crate inclusion. This broke the build.
  • Remove workspace as we only had a single crate by @mre in #171
  • Update docs by @mre in #172
  • Simplify Docker setup and workflow files

Full Changelog: v0.8.1...v0.8.2

Version 0.8.1

25 Jul 14:10
@mre mre
Compare
Choose a tag to compare

What's Changed

  • Fix assets crate inclusion. This broke the build.
  • Remove workspace as we only had a single crate by @mre in #171
  • Update docs by @mre in #172
  • Simplify Docker setup and workflow files

Full Changelog: v0.8.0...v0.8.1

Version 0.8.0

24 Jul 14:52
@mre mre
Compare
Choose a tag to compare

What's Changed

  • Mention tinysearch Github Action in documentation by @leonhfr in #163
  • Fix wrong ignore path and add a lot of features by @ASMfreaK in #168
    This should finally fix the broken builds on crates.io. We only have a single "engine" binary now, which handles all use-cases.
  • Update dependencies and pipelines; cleanup.

New Contributors

Full Changelog: v0.7.0...v0.8.0

Version 0.7.0

10 Oct 12:35
@mre mre
Compare
Choose a tag to compare

What's Changed

  • Update README.md by @expilo in #150
  • Fix copying engine files (based on #153) by @mre in #154
  • change default output folder to ./wasm_output instead of local dir by @lspdrz in #156
  • Docs: A better solution for generating search index for zola by @arHSM in #158
  • meta field by @Jieiku in #161

New Contributors

Full Changelog: v0.6.3...v0.7.0

Version 0.6.3

29 Dec 02:01
@mre mre
Compare
Choose a tag to compare
Version 0.6.3 Pre-release
Pre-release

Fix bug that prevented unpacking the engine code.

Add more debug output

23 Aug 10:59
@mre mre
Compare
Choose a tag to compare
Add more debug output Pre-release
Pre-release

This is helpful when troubleshooting permission problems with temporary directories (e.g. in CI environments)

Add version flag

22 Aug 15:16
@mre mre
8225c0c
Compare
Choose a tag to compare
Add version flag Pre-release
Pre-release
  • Adds a --version flag

Port tinysearch over to Xor filters

21 Aug 16:34
@mre mre
ebcc265
Compare
Choose a tag to compare
  • 20-25% smaller WASM output: The test index is 99kB now, 49kB gzipped, 40kB brotli.
  • No more TINY_MAGIC. The Xor filters don't require that.
  • Faster initial compilation time thanks to fewer dependencies.
  • Cleaned up the custom serialization code.
  • Removed the forked dependencies, which were no longer needed.
  • Replaced lazy_static! with once_cell! and include_bytes! with the new include_str!.
  • Updated the docs.