Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
trevyn committed Jul 28, 2024
1 parent 427e15a commit 35ec184
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## 0.11.0 - 2024-07-28

### Bumped

- Bumped `rusqlite` to 0.32.1 (sqlite 3.46.0)

### Added

- Added an `.insert_mut()` method that automatically updates the `rowid`.
- Added a `migrations.toml` locked mode for CI, thanks @antifuchs in [#40](https://github.com/trevyn/turbosql/issues/40) for the idea!

### Changed

- MSRV is now Rust 1.77

### Fixed

- Improved compatibility with `rust-analyzer` and improved error messages.
- Correctly specify minimum dependency versions

## 0.10.0 - 2024-02-25

### Bumped
Expand Down
2 changes: 1 addition & 1 deletion turbosql-impl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ license = "MIT OR Apache-2.0 OR CC0-1.0"
name = "turbosql-impl"
repository = "https://github.com/trevyn/turbosql"
rust-version = "1.77"
version = "0.10.0"
version = "0.11.0"

[lib]
proc-macro = true
Expand Down
4 changes: 2 additions & 2 deletions turbosql/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ name = "turbosql"
readme = "README.md"
repository = "https://github.com/trevyn/turbosql"
rust-version = "1.77"
version = "0.10.0"
version = "0.11.0"

[dependencies]
turbosql-impl = {path = "../turbosql-impl", version = "=0.10.0"}
turbosql-impl = {path = "../turbosql-impl", version = "=0.11.0"}

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
directories-next = "2.0.0"
Expand Down

0 comments on commit 35ec184

Please sign in to comment.