From 4a27dd34a2d72c0a213ec2a5947c3583e735d3b2 Mon Sep 17 00:00:00 2001 From: Ivan Enderlin Date: Mon, 9 Dec 2019 13:39:21 +0100 Subject: [PATCH 1/2] feat(github) Attach C & C++ headers to releases. --- azure-pipelines.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 2409dadda9d..6ad407923c4 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -190,6 +190,7 @@ jobs: make capi make test-capi cp target/release/libwasmer_runtime_c_api.so ./artifacts + find target/release/build -name 'wasmer.h*' -exec cp {} ./artifacts ';' displayName: Build c-api (Linux) condition: and(succeeded(), eq(variables['Agent.OS'], 'Linux')) - bash: | From 03082a6960b2662ff09950a138f6c9eb7137278a Mon Sep 17 00:00:00 2001 From: Ivan Enderlin Date: Mon, 9 Dec 2019 13:41:35 +0100 Subject: [PATCH 2/2] doc(changelog) Add #1050. --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a047d4a1f03..e013b0dc05b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## **[Unreleased]** +- [#1050](https://github.com/wasmerio/wasmer/pull/1050) Attach C & C++ headers to releases. - [#1033](https://github.com/wasmerio/wasmer/pull/1033) Set cranelift backend as default compiler backend again, require at least one backend to be enabled for Wasmer CLI - [#1030](https://github.com/wasmerio/wasmer/pull/1030) Ability to generate `ImportObject` for a specific version WASI version with the C API. - [#1028](https://github.com/wasmerio/wasmer/pull/1028) Introduce strict/non-strict modes for `get_wasi_version`