SQLite-backed Key / Value Store
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: updated cargo and changelog

+10 -3
+7
CHANGELOG.md
··· 2 2 3 3 Documenting changes between versions beginning from v0.3.0 4 4 5 + ## v0.11.0 6 + 7 + **THIS IS A BREAKING CHANGE** 8 + 9 + * Removed the File store backend as this project will be using DBs going forward. 10 + * Going forward, you should intend to move your current setup to the DB backend or stay on `v0.10.3` 11 + 5 12 ## v0.10.3 6 13 7 14 * `safir env` now lists all existing environments and indicates the currently loaded one
+2 -2
Cargo.lock
··· 1 1 # This file is automatically @generated by Cargo. 2 2 # It is not intended for manual editing. 3 - version = 3 3 + version = 4 4 4 5 5 [[package]] 6 6 name = "addr2line" ··· 1054 1054 1055 1055 [[package]] 1056 1056 name = "safir" 1057 - version = "0.10.3" 1057 + version = "0.11.0" 1058 1058 dependencies = [ 1059 1059 "anyhow", 1060 1060 "async-trait",
+1 -1
Cargo.toml
··· 1 1 [package] 2 2 name = "safir" 3 - version = "0.10.3" 3 + version = "0.11.0" 4 4 edition = "2021" 5 5 authors = ["Graham Keenan <graham.keenan@outlook.com>"] 6 6 license = "MIT OR Apache-2.0"