Skip to content

Commit

Permalink
chore(release): 0.26.0
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user authored and MaidSafe-QA committed Aug 30, 2021
1 parent dcdc0c6 commit f5bf32e
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 11 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,26 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [0.26.0](https://github.com/maidsafe/self_encryption/compare/v0.25.0...v0.26.0) (2021-08-30)


### ⚠ BREAKING CHANGES

* **docs:** Complete change of API.

### Features

* **reading:** implement faster reading ([26799d9](https://github.com/maidsafe/self_encryption/commit/26799d93658cbd3b11478aea1ad482ecdb8f25bf))


### Bug Fixes

* **benches:** update for min size change ([940f6fe](https://github.com/maidsafe/self_encryption/commit/940f6fefb461fa98bd76b125eedb921bc80f749f))
* enforce min size, sort keys in new ([e7f4ec0](https://github.com/maidsafe/self_encryption/commit/e7f4ec0eef1343c234e7b69143048250523504d2))


* **docs:** add explainer for IV and Pad. ([2d56d1a](https://github.com/maidsafe/self_encryption/commit/2d56d1a9a7999b562e59934a1e825a4a05e0dfa4))

## [0.25.0](https://github.com/maidsafe/self_encryption/compare/v0.24.3...v0.25.0) (2021-07-06)


Expand Down
25 changes: 14 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,13 @@ license = "GPL-3.0"
name = "self_encryption"
readme = "README.md"
repository = "https://github.com/maidsafe/self_encryption"
version = "0.25.0"
version = "0.26.0"

[dependencies]
aes = "~0.7.4"
block-modes = "~0.8.1"
bincode = "1.2.1"
brotli = "3.3.0"
bytes = { version = "1.0.1", features = ["serde"] }
rand = "~0.7.3"
rand_chacha = "~0.2.2"
rayon = "1.5.1"
Expand All @@ -24,17 +23,21 @@ num_cpus = "1.13.0"
itertools = "~0.10.0"
xor_name = "3.1.0"

[dependencies.serde]
version = "1.0.97"
features = [ "derive" ]
[dependencies.bytes]
version = "1.0.1"
features = [ "serde" ]

[dependencies.tiny-keccak]
version = "2.0.2"
features = [ "sha3" ]
[dependencies.serde]
version = "1.0.97"
features = [ "derive" ]

[dependencies.tokio]
version = "1.6.0"
features = [ "macros", "sync", "io-util", "rt", "rt-multi-thread" ]
[dependencies.tiny-keccak]
version = "2.0.2"
features = [ "sha3" ]

[dependencies.tokio]
version = "1.6.0"
features = [ "macros", "sync", "io-util", "rt", "rt-multi-thread" ]

[dev-dependencies]
criterion = "~0.3"
Expand Down

0 comments on commit f5bf32e

Please sign in to comment.