Skip to content
This repository has been archived by the owner on Jul 28, 2024. It is now read-only.

Commit

Permalink
Merge pull request #74 from tetratelabs/envoy-wasm-1.5.0-tag
Browse files Browse the repository at this point in the history
support envoy-wasm's release/v1.15.0 branch with 'abi_0_1_0' tag
  • Loading branch information
mathetake authored Oct 5, 2020
2 parents 563fcac + 5a98097 commit 8b7739d
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ TinyGo's official release of WASI target will come soon, and after that you coul
| proxy-wasm-go-sdk| proxy-wasm ABI version |istio/proxyv2|
|:-------------:|:-------------:|:-------------:|
| main | 0.2.0| v1.17.x |
| v0.0.7 | 0.2.0| v1.17.x |
| v0.0.8 | 0.2.0| v1.17.x |


## run examples
Expand Down
2 changes: 2 additions & 0 deletions proxywasm/abi_version.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

// +build !abi_0_1_0

package proxywasm

//nolint
Expand Down
24 changes: 24 additions & 0 deletions proxywasm/abi_version_010.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// Copyright 2020 Tetrate
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

// +build abi_0_1_0

// This ABI version switching is necessary to be compatible with the envoyproxy/envoy-wasm release/v1.15 branch
// TODO: delete this file and support the single ABI version

package proxywasm

//nolint
//export proxy_abi_version_0_1_0
func proxyABIVersion010() {}

0 comments on commit 8b7739d

Please sign in to comment.