Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolve the proc-block bootstrapping problem #353

Merged
merged 13 commits into from
Oct 11, 2021
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
13 changes: 7 additions & 6 deletions .github/workflows/releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -205,17 +205,18 @@ jobs:
target: aarch64-unknown-linux-gnu
features: wasmer-runtime,wasm3-runtime
# MacOS
#- os: macos-latest
# target: x86_64-apple-darwin
# features: wasmer-runtime,wasm3-runtime
- os: macos-latest
target: x86_64-apple-darwin
features: wasmer-runtime,wasm3-runtime
# iOS
- os: macos-latest
target: aarch64-apple-ios
features: wasm3-runtime
#- os: macos-latest
# target: x86_64-apple-ios
# features: wasm3-runtime
#- os: macos-latest
# target: aarch64-apple-ios
# features: wasm3-runtime
runs-on: ${{ matrix.os }}
continue-on-error: true
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
Expand Down
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased] - ReleaseDate

## [0.9.0] - 2021-10-10

### Added

- The Rune repository now contains a JSON schema that can be used to provide
Expand All @@ -18,6 +20,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- All tensors of strings will now use `Tensor<Cow<'static, str>>` as their
tensor types ([#345](https://github.com/hotg-ai/rune/pull/345))
- Generated Runes will now pull internal crates (`hotg-rune-core`, etc.) from
crates.io using a version that matches the `rune` compiler
([#353](https://github.com/hotg-ai/rune/pull/353)) instead of using the
`nightly` tag

### Removed

- All processing blocks have been moved to the
[`hotg-ai/proc-block`](https://github.com/hotg-ai/proc-blocks) repository
([#353](https://github.com/hotg-ai/rune/pull/353))

## [0.8.0] - 2021-10-05

Expand Down Expand Up @@ -213,7 +225,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [0.2.1] - 2021-03-21

<!-- next-url -->
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/hotg-rune-cli-v0.8.0...HEAD
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/hotg-rune-cli-v0.9.0...HEAD
[0.9.0]: https://github.com/assert-rs/predicates-rs/compare/hotg-rune-cli-v0.8.0...hotg-rune-cli-v0.9.0
[0.8.0]: https://github.com/assert-rs/predicates-rs/compare/hotg-rune-cli-v0.7.0...hotg-rune-cli-v0.8.0
[0.7.0]: https://github.com/assert-rs/predicates-rs/compare/hotg-rune-cli-v0.6.0...hotg-rune-cli-v0.7.0
[0.6.0]: https://github.com/assert-rs/predicates-rs/compare/hotg-rune-cli-v0.5.3...hotg-rune-cli-v0.6.0
Expand Down
Loading