Skip to content

Commit

Permalink
Bump to 27.0.0 (#258)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcrichton authored Nov 20, 2024
1 parent 6ead2fa commit 73f80c2
Show file tree
Hide file tree
Showing 5 changed files with 56 additions and 55 deletions.
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

0 comments on commit 73f80c2

Please sign in to comment.