Skip to content

Commit 33bfa08

Browse files
committed
chore: merge branch 'release/v11.0.0'
2 parents 0bca247 + 84c89bb commit 33bfa08

67 files changed

Lines changed: 624 additions & 6495 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.cargo/config

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/workflows/benches.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ on: workflow_dispatch
66

77
jobs:
88
bench-classic:
9-
uses: Cosmian/reusable_workflows/.github/workflows/cargo-bench.yml@main
9+
uses: Cosmian/reusable_workflows/.github/workflows/cargo-bench.yml@develop
1010
with:
1111
toolchain: stable
1212
features: full_bench
1313
force: true
1414

1515
bench-hybridized:
16-
uses: Cosmian/reusable_workflows/.github/workflows/cargo-bench.yml@main
16+
uses: Cosmian/reusable_workflows/.github/workflows/cargo-bench.yml@develop
1717
with:
1818
toolchain: stable
1919
features: full_bench,hybridized_bench

.github/workflows/build.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ on: push
55

66
jobs:
77
cargo-lint:
8-
uses: Cosmian/reusable_workflows/.github/workflows/cargo-nursery.yml@main
8+
uses: Cosmian/reusable_workflows/.github/workflows/cargo-nursery.yml@develop
99
with:
1010
toolchain: stable
11+
cargo-publish:
12+
needs:
13+
- cargo-lint
14+
uses: Cosmian/reusable_workflows/.github/workflows/cargo-publish.yml@develop
15+
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
16+
with:
17+
toolchain: stable
18+
secrets: inherit

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
*nix*
44
/*.sh
55
/.vscode
6+
Cargo.lock

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ repos:
8181
- id: cargo-check
8282

8383
- repo: https://github.com/Cosmian/git-hooks.git
84-
rev: v1.0.5
84+
rev: v1.0.7
8585
hooks:
8686
- id: cargo-update
8787
- id: cargo-outdated
@@ -90,7 +90,7 @@ repos:
9090
- id: clippy-autofix-nursery
9191
- id: clippy-autofix-others
9292
- id: cargo-tests-all
93-
- id: cargo-format
93+
- id: stable-cargo-format
9494
- id: clippy-all-targets-all-features
9595
- id: cargo-dry-publish
9696
args: [--allow-dirty]
File renamed without changes.

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,33 @@ All notable changes to this project will be documented in this file.
44

55
---
66

7+
## [11.0.0] - 2023-03-01
8+
9+
### Bug Fixes
10+
11+
- Decrypt test example
12+
13+
### Documentation
14+
15+
- Update readme
16+
17+
### Refactor
18+
19+
- [**breaking**] Move all interfaces (FFI, Wasm, pyo3) to `cloudproof_rust` repository
20+
- remove unneeded dependencies
21+
- remove inline macros
22+
- remove serde wherever possible
23+
24+
### Ci
25+
26+
- Add autopublish action
27+
28+
### Testing
29+
30+
- Re-expose non-regression mechanism
31+
32+
---
33+
734
## [10.0.0] - 2023-02-02
835

936
### Documentation
@@ -20,6 +47,8 @@ All notable changes to this project will be documented in this file.
2047
- Update KMS version
2148
- Rebase externals repos
2249

50+
---
51+
2352
## [9.0.0] - 2023-01-20
2453

2554
### Changed

0 commit comments

Comments
 (0)