folex 1f20f9ea49
Introduce tag-based draft releases (#117)
The release scheme is as follows.

## Tags
A release is created on a tag push. The tag must be prefixed with `v`, e.g., `v0.2.3`.

Tags can be pushed either manually or via `tag.yml` GitHub Action via a press of the button. 

Tags can be moved if needed, like this:
```
# Remove tag
git push -d origin v0.2.3 && git tag -d v0.2.3 
# Mark current commit with a tag and push
git tag v0.2.3 && git push origin v0.2.3
```
In such a case, the release action will be executed against the new commit and the existing `v0.2.3` release will be moved to Draft status. One would rarely need such a trick, but it's useful to know of it.

## Changelog
On each release, a changelog is generated. The changelog is calculated from Pull Requests merged between a previous semver-looking tag and a newly pushed one. So, given that there was a release `v0.2.2`, on a push of `v0.2.3` changelog will be generated from PRs that were merged since `v0.2.2` until the commit marked with `v0.2.3`.

Changelog format can be easily changed in the `changelog_config.json` file. It is also possible to set up PR grouping by labels or by regex.

## Release
GitHub release is created in status 'Draft' to avoid notifying repository watchers. Repository maintainers must review the release and make it public manually.

## Publishing
On each release, all publishable crates are published to crates.io. Their versions are published as is, i.e. exactly as specified in Cargo.toml's. Because of that, it is possible that the same versions of crates exist in different releases. It gives maintainers the finest control over publishing.
2021-09-15 18:52:31 +03:00
2021-09-04 13:39:39 +03:00
2021-04-13 12:36:14 +03:00
2020-06-03 23:08:26 +03:00
2021-05-20 20:20:57 +03:00
2021-05-11 15:44:11 +03:00
2020-05-02 12:44:49 +03:00
2021-09-09 16:43:14 +03:00

Marine

marine version on crates.io

Marine is a general purpose Wasm runtime that could be used in different scenarios, especially in programs based on the entity component system (ECS) pattern or plugin architecture. It runs multi-module WebAssembly applications with interface-types and shared-nothing linking schemes.

Fluence nodes use Marine to execute Wasm services composed by compiled Aqua:

fluence stack

Documentation

To learn more about about Marine, see the Marine Documentation, Marine Examples and the Marine Quickstart.

Description
Marine runs multi-module WebAssembly applications with interface-types and shared-nothing linking scheme
Readme AGPL-3.0 22 MiB
Languages
Rust 91.1%
JavaScript 5.1%
TypeScript 3.7%