Skip to content

Commit

Permalink
chore: prepare for 0.7.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
edwinkys committed Aug 5, 2024
1 parent c3df2c8 commit 0a07989
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oasysdb"
version = "0.7.0"
version = "0.7.1"
edition = "2021"
license = "Apache-2.0"
readme = "readme.md"
Expand Down
21 changes: 21 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## v0.7.1

### What's Changed

This release includes a low-level CRUD API for the index implementation from the
Database layer. Once the index is built, when necessary, you can use the CRUD
API to manage the index data directly. This API allows you to perform the
following operations:

- Insert new records into the index.
- Update existing records in the index.
- Delete records from the index.

### Contributors

- @edwinkys

### Full Changelog

[v0.7.0...v0.7.1](https://github.com/oasysai/oasysdb/compare/v0.7.0...v0.7.1)

## v0.7.0

### What's Changed
Expand Down
3 changes: 0 additions & 3 deletions docs/refs/database.md
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,3 @@ These are the available advanced operations:
Please note that these operations are not recommended for general use since
they bypass the SQL layer and can lead to inconsistencies between the SQL
data source and the index which can lead to unexpected behavior.

With this in mind, technically you can use these operations to use OasysDB
without the SQL layer and directly interact with each index data store.

0 comments on commit 0a07989

Please sign in to comment.