Skip to content

Commit

Permalink
Prepare the 1.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Amanieu committed Jan 7, 2022
1 parent 0aea3c9 commit 91b9061
Show file tree
Hide file tree
Showing 17 changed files with 168 additions and 139 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Expand Up @@ -225,7 +225,8 @@ jobs:
pyenv install --list | grep '^ 3.9' | tail -n 1 | tr -d '[:space:]' > .python-version
pyenv install --skip-existing "$(cat .python-version)"
- uses: Swatinem/rust-cache@v1
# Caching is disabled because it interferes with artifact creation
#- uses: Swatinem/rust-cache@v1

- name: Set up utilities
shell: bash
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Expand Up @@ -66,7 +66,8 @@ jobs:
override: true
target: ${{ matrix.target.target-name }}

- uses: Swatinem/rust-cache@v1
# Caching is disabled because it interferes with artifact creation
#- uses: Swatinem/rust-cache@v1

- name: Set current Python version
shell: bash
Expand Down Expand Up @@ -230,7 +231,8 @@ jobs:
pyenv install --list | grep '^ 3.9' | tail -n 1 | tr -d '[:space:]' > .python-version
pyenv install --skip-existing "$(cat .python-version)"
- uses: Swatinem/rust-cache@v1
# Caching is disabled because it interferes with artifact creation
#- uses: Swatinem/rust-cache@v1

- name: Set up just
shell: bash
Expand Down
31 changes: 28 additions & 3 deletions CHANGELOG.md
Expand Up @@ -4,12 +4,36 @@ All notable changes to this project will be documented in this file.

## Table of Contents

* [1.0.0-beta1](#100-beta1---2020-12-03)
* [1.1.0](#100---2022-01-05)
* [1.0.0](#100---2021-01-18)
* [0.4.1](#041---2020-02-02)
* [0.3.0](#030---2019-07-16)
* [0.2.0](#020---2019-04-16)

## [1.0.0-beta1] - 2020-12-03
## [1.1.0] - 2022-01-05

## Added

* `Exports` can now be iterated over.
* Host functions can now type-hint results with `None` and tuples.
* Added `int64` and `float32`/`float64` views of memory.
* Imports can now be specified using a `dict` instead of an `ImportObject`.

## Changed

* Wasmer has been updated to version 2.1.0.
* Python exceptions can now be thrown across Wasm calls.

## Fixed

* Memory view lengths are now returned correctly.
* Unsigned values that fit in `u32`/`u64` no longer cause overflow errors when
passed in/out of Wasm.
* Indexing a memory view with a slice now always returns a list of values.
* Indexing a memory view with a slice can use steps.
* Indexing a memory view with an empty slice no longer returns an error.

## [1.0.0] - 2021-01-18

### Changed

Expand Down Expand Up @@ -381,7 +405,8 @@ All notable changes to this project will be documented in this file.

## [0.2.0] - 2019-04-16

[1.0.0-beta1]: https://github.com/wasmerio/wasmer-python/compare/0.4.1...1.0.0-beta1
[1.1.0]: https://github.com/wasmerio/wasmer-python/compare/1.0.0...1.1.0
[1.0.0]: https://github.com/wasmerio/wasmer-python/compare/0.4.1...1.0.0
[0.4.1]: https://github.com/wasmerio/wasmer-python/compare/0.3.0...0.4.1
[0.3.0]: https://github.com/wasmerio/wasmer-python/compare/0.2.0...0.3.0
[0.2.0]: https://github.com/wasmerio/wasmer-python/compare/0.1.0...0.2.0
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion docs/api/search.js

Large diffs are not rendered by default.

0 comments on commit 91b9061

Please sign in to comment.