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

Bump to 27.0.0 #258

Merged
merged 1 commit into from
Nov 20, 2024
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
5 changes: 3 additions & 2 deletions ci/download-wasmtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@
import zipfile
from pathlib import Path

# set to "dev" to download the latest or pick a tag from https://github.com/bytecodealliance/wasmtime/tags
WASMTIME_VERSION = "dev"
# set to "dev" to download the latest or pick a tag from
# https://github.com/bytecodealliance/wasmtime/tags
WASMTIME_VERSION = "v27.0.0"


def main(platform, arch):
Expand Down
60 changes: 30 additions & 30 deletions rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ crate-type = ['cdylib', 'rlib']
[dependencies]
anyhow = "1.0"
heck = { version = "0.4", features = ["unicode"] }
wit-parser = "0.218.0"
wit-component = "0.218.0"
wit-parser = "0.219.0"
wit-component = "0.219.0"
indexmap = "2.0"
wasmtime-environ = { version = "26.0.1", features = ['component-model', 'compile'] }
wit-bindgen = { version = "0.33.0" }
wit-bindgen-core = "0.33.0"
wasmparser = "0.218.0" # this can be removed once wasmtime-environ re-exports wasmparser (wasmtime 27)
wasmtime-environ = { version = "27.0.0", features = ['component-model', 'compile'] }
wit-bindgen = { version = "0.34.0" }
wit-bindgen-core = "0.34.0"
wasmparser = "0.219.0" # this can be removed once wasmtime-environ re-exports wasmparser (wasmtime 27)


[features]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
with open("README.md", "r") as fh:
long_description = fh.read()

version = "25.0.0"
version = "27.0.0"

# Give unique version numbers to all commits so our publication-on-each commit
# works on main
Expand Down
32 changes: 16 additions & 16 deletions wasmtime/_bindings.py
Original file line number Diff line number Diff line change
Expand Up @@ -2184,29 +2184,29 @@ def wasmtime_config_cranelift_opt_level_set(arg0: Any, arg1: Any) -> None:
def wasmtime_config_profiler_set(arg0: Any, arg1: Any) -> None:
return _wasmtime_config_profiler_set(arg0, arg1) # type: ignore

_wasmtime_config_memory_may_move_set = dll.wasmtime_config_memory_may_move_set
_wasmtime_config_memory_may_move_set.restype = None
_wasmtime_config_memory_may_move_set.argtypes = [POINTER(wasm_config_t), c_bool]
def wasmtime_config_memory_may_move_set(arg0: Any, arg1: Any) -> None:
return _wasmtime_config_memory_may_move_set(arg0, arg1) # type: ignore

_wasmtime_config_memory_reservation_set = dll.wasmtime_config_memory_reservation_set
_wasmtime_config_memory_reservation_set.restype = None
_wasmtime_config_memory_reservation_set.argtypes = [POINTER(wasm_config_t), c_uint64]
def wasmtime_config_memory_reservation_set(arg0: Any, arg1: Any) -> None:
return _wasmtime_config_memory_reservation_set(arg0, arg1) # type: ignore
_wasmtime_config_static_memory_forced_set = dll.wasmtime_config_static_memory_forced_set
_wasmtime_config_static_memory_forced_set.restype = None
_wasmtime_config_static_memory_forced_set.argtypes = [POINTER(wasm_config_t), c_bool]
def wasmtime_config_static_memory_forced_set(arg0: Any, arg1: Any) -> None:
return _wasmtime_config_static_memory_forced_set(arg0, arg1) # type: ignore

_wasmtime_config_static_memory_maximum_size_set = dll.wasmtime_config_static_memory_maximum_size_set
_wasmtime_config_static_memory_maximum_size_set.restype = None
_wasmtime_config_static_memory_maximum_size_set.argtypes = [POINTER(wasm_config_t), c_uint64]
def wasmtime_config_static_memory_maximum_size_set(arg0: Any, arg1: Any) -> None:
return _wasmtime_config_static_memory_maximum_size_set(arg0, arg1) # type: ignore

_wasmtime_config_memory_guard_size_set = dll.wasmtime_config_memory_guard_size_set
_wasmtime_config_memory_guard_size_set.restype = None
_wasmtime_config_memory_guard_size_set.argtypes = [POINTER(wasm_config_t), c_uint64]
def wasmtime_config_memory_guard_size_set(arg0: Any, arg1: Any) -> None:
return _wasmtime_config_memory_guard_size_set(arg0, arg1) # type: ignore

_wasmtime_config_memory_reservation_for_growth_set = dll.wasmtime_config_memory_reservation_for_growth_set
_wasmtime_config_memory_reservation_for_growth_set.restype = None
_wasmtime_config_memory_reservation_for_growth_set.argtypes = [POINTER(wasm_config_t), c_uint64]
def wasmtime_config_memory_reservation_for_growth_set(arg0: Any, arg1: Any) -> None:
return _wasmtime_config_memory_reservation_for_growth_set(arg0, arg1) # type: ignore
_wasmtime_config_dynamic_memory_reserved_for_growth_set = dll.wasmtime_config_dynamic_memory_reserved_for_growth_set
_wasmtime_config_dynamic_memory_reserved_for_growth_set.restype = None
_wasmtime_config_dynamic_memory_reserved_for_growth_set.argtypes = [POINTER(wasm_config_t), c_uint64]
def wasmtime_config_dynamic_memory_reserved_for_growth_set(arg0: Any, arg1: Any) -> None:
return _wasmtime_config_dynamic_memory_reserved_for_growth_set(arg0, arg1) # type: ignore

_wasmtime_config_native_unwind_info_set = dll.wasmtime_config_native_unwind_info_set
_wasmtime_config_native_unwind_info_set.restype = None
Expand Down
Loading