Skip to content

Commit 4390dbc

Browse files
authored
Bump to 6.0.0 (#129)
1 parent 4b6de69 commit 4390dbc

File tree

5 files changed

+10
-22
lines changed

5 files changed

+10
-22
lines changed

ci/download-wasmtime.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@
1010
import urllib.request
1111
import zipfile
1212

13-
WASMTIME_VERSION = "v5.0.0"
14-
WASMTIME_VERSION = "dev"
13+
WASMTIME_VERSION = "v6.0.0"
1514

1615

1716
def main(platform, arch):

rust/Cargo.lock

Lines changed: 8 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,3 @@ wit-bindgen = { version = "0.3.0", default-features = false, features = ['macros
66

77
[profile.release]
88
strip = 'debuginfo'
9-
10-
[patch.crates-io]
11-
wasmtime-environ = { git = 'https://github.com/bytecodealliance/wasmtime', branch = 'release-6.0.0' }

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
with open("README.md", "r") as fh:
77
long_description = fh.read()
88

9-
version = "5.0.0"
9+
version = "6.0.0"
1010

1111
# Give unique version numbers to all commits so our publication-on-each commit
1212
# works on main

wasmtime/_bindings.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1959,12 +1959,6 @@ def wasi_config_inherit_stderr(config: Any) -> None:
19591959
def wasi_config_preopen_dir(config: Any, path: Any, guest_path: Any) -> bool:
19601960
return _wasi_config_preopen_dir(config, path, guest_path) # type: ignore
19611961

1962-
_wasi_config_preopen_socket = dll.wasi_config_preopen_socket
1963-
_wasi_config_preopen_socket.restype = c_bool
1964-
_wasi_config_preopen_socket.argtypes = [POINTER(wasi_config_t), c_uint32, POINTER(c_char)]
1965-
def wasi_config_preopen_socket(config: Any, fd_num: Any, host_port: Any) -> bool:
1966-
return _wasi_config_preopen_socket(config, fd_num, host_port) # type: ignore
1967-
19681962
class wasmtime_error(Structure):
19691963
pass
19701964

@@ -2213,12 +2207,6 @@ def wasmtime_store_new(engine: Any, data: Any, finalizer: Any) -> ctypes._Pointe
22132207
def wasmtime_store_context(store: Any) -> ctypes._Pointer:
22142208
return _wasmtime_store_context(store) # type: ignore
22152209

2216-
_wasmtime_store_limiter = dll.wasmtime_store_limiter
2217-
_wasmtime_store_limiter.restype = None
2218-
_wasmtime_store_limiter.argtypes = [POINTER(wasmtime_store_t), c_int64, c_int64, c_int64, c_int64, c_int64]
2219-
def wasmtime_store_limiter(store: Any, memory_size: Any, table_elements: Any, instances: Any, tables: Any, memories: Any) -> None:
2220-
return _wasmtime_store_limiter(store, memory_size, table_elements, instances, tables, memories) # type: ignore
2221-
22222210
_wasmtime_store_delete = dll.wasmtime_store_delete
22232211
_wasmtime_store_delete.restype = None
22242212
_wasmtime_store_delete.argtypes = [POINTER(wasmtime_store_t)]

0 commit comments

Comments
 (0)