Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,12 @@ jobs:
- name: Clippy
run: cargo clippy --tests --benches -- -D clippy::all

- name: Install ic-test
run: cargo install ic-test

- name: Install candid-extractor
run: cargo install candid-extractor

- name: Build test projects
run: ./scripts/build_tests.sh

Expand All @@ -52,7 +58,7 @@ jobs:
uses: taiki-e/install-action@cargo-llvm-cov

- name: Generate code coverage
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
run: cargo llvm-cov --all-features --ignore-filename-regex='(bindings|test_canisters)' --workspace --lcov --output-path lcov.info

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
Expand Down
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
# Changelog


## [v0.9.0]
- switch to ic-stable-structures v0.7
- refactor project structure
- integrate ic-test into project for the integration tests
- update dependencies


## [v0.8.1]
- switch to ic-cdk v0.18.3
- switch to pocket-ic v9.0
- update dependencies


## [v0.8.0]
- improved Wasi compliance
- change edition to 2024
Expand Down Expand Up @@ -79,8 +88,9 @@
## [v0.5.0]
- *API change:* init with memory manager using memory index range rather than first memory index.


[unreleased]: https://github.com/wasm-forge/stable-fs/compare/v0.8.0...main
[unreleased]: https://github.com/wasm-forge/stable-fs/compare/v0.9.0...main
[v0.9.0]: https://github.com/wasm-forge/stable-fs/compare/v0.8.1...v0.9.0
[v0.8.1]: https://github.com/wasm-forge/stable-fs/compare/v0.8.0...v0.8.1
[v0.8.0]: https://github.com/wasm-forge/stable-fs/compare/v0.7.3...v0.8.0
[v0.7.3]: https://github.com/wasm-forge/stable-fs/compare/v0.7.2...v0.7.3
[v0.7.2]: https://github.com/wasm-forge/stable-fs/compare/v0.7.1...v0.7.2
Expand Down
Loading