Skip to content

Commit

Permalink
check installed script update, changelog.md
Browse files Browse the repository at this point in the history
  • Loading branch information
krpatter-intc committed Aug 1, 2023
1 parent a438fcf commit b694685
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

* Add basic support for implicit namespaces [#1645](https://github.com/PyO3/maturin/pull/1696)

## [1.1.0] - 2023-06-10

* Add basic support for GraalPy in [#1645](https://github.com/PyO3/maturin/pull/1645)
Expand Down Expand Up @@ -152,7 +154,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

* **Breaking Change**: Remove support for specifying python package metadata in `Cargo.toml` in [#1200](https://github.com/PyO3/maturin/pull/1200).
Python package metadata should be specified in the `project` section of `pyproject.toml` instead as [PEP 621](https://peps.python.org/pep-0621/) specifies.
* Initial support for shipping bin targets as wasm32-wasi binaries that are run through wasmtime in [#1107](https://github.com/PyO3/maturin/pull/1107).
* Initial support for shipping bin targets as wasm32-wasi binaries that are run through wasmtime in [#1107](https://github.com/PyO3/maturin/pull/1107).
Note that wasmtime currently only support the five most popular platforms and that wasi binaries have restrictions when interacting with the host.
Usage is by setting `--target wasm32-wasi`.
* Add support for python first [`src` project layout](https://py-pkgs.org/04-package-structure.html#the-source-layout) in [#1185](https://github.com/PyO3/maturin/pull/1185)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
import pyo3_mixed_implicit.some_rust as some_rust

assert some_rust.get_22() == 22
assert some_rust.double(lambda: 4) == 16
assert some_rust.double(lambda: 4) == 8

print("SUCCESS")

0 comments on commit b694685

Please sign in to comment.