Skip to content

Commit

Permalink
Merge pull request #342 from wasmerio/release-please--branches--main-…
Browse files Browse the repository at this point in the history
…-components--wasmer-sdk

chore(main): release wasmer-sdk 0.3.0
  • Loading branch information
Michael-F-Bryan committed Nov 28, 2023
2 parents 0bc97b6 + 49eca32 commit 691c766
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/release-please/manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.2.0"
".": "0.3.0"
}
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# Changelog

## [0.3.0](https://github.com/wasmerio/wasmer-js/compare/wasmer-sdk-v0.2.0...wasmer-sdk-v0.3.0) (2023-11-27)


### ⚠ BREAKING CHANGES

* Removed the `Container`, `Manifest`, and `Volume` types
* Functionality needing a `Runtime` will now use a lazily initialized global runtime if one wasn't provided
* Renamed `SpawnConfig` and `RunConfig` to `SpawnOptions` and `RunOptions`.

### Features

* A `Wasmer` package now has a `commands` field which maps a `Command`'s name to its instance ([243d4b9](https://github.com/wasmerio/wasmer-js/commit/243d4b9ad6197263f05c0756d231596a7beb901b))
* A `Wasmer` package now has an `entrypoint` field with a runnable `Command` ([243d4b9](https://github.com/wasmerio/wasmer-js/commit/243d4b9ad6197263f05c0756d231596a7beb901b))
* Added a `Command.binary()` method for accessing the binary run by a `Command` ([243d4b9](https://github.com/wasmerio/wasmer-js/commit/243d4b9ad6197263f05c0756d231596a7beb901b))
* Added a `Wasmer.fromWebc()` constructor for loading a `*.webc` file ([4606724](https://github.com/wasmerio/wasmer-js/commit/4606724282e9b5d49ca6e1456b530154b45094be))
* Functionality needing a `Runtime` will now use a lazily initialized global runtime if one wasn't provided ([70a2083](https://github.com/wasmerio/wasmer-js/commit/70a20838a9fba1712a6905e160075c9ad13b93f8))
* Introduced a `DirectoryInit` type that lets you initialize a `Directory` with a map from file paths to their contents ([553ded5](https://github.com/wasmerio/wasmer-js/commit/553ded5451a7863b8f24889d5ee7bbd269bf4953))
* Rewrote the top-level `Wasmer` type to represent a package that has been loaded and is ready for execution ([9f54cb5](https://github.com/wasmerio/wasmer-js/commit/9f54cb5ab0d4694e7ebdc3e7f7926799f29c6c8d))
* Users are now able to mount directories using either a existing `Directory` or a `DirectoryInit` which will be used to instantiate a new `Directory` ([e43ea8c](https://github.com/wasmerio/wasmer-js/commit/e43ea8c622aa163ca6a61f70f41cf2db932850eb))


### Code Refactoring

* Removed the `Container`, `Manifest`, and `Volume` types ([e2ed292](https://github.com/wasmerio/wasmer-js/commit/e2ed292494667ef73274ecc93e0c13b4fb1e819e))
* Renamed `SpawnConfig` and `RunConfig` to `SpawnOptions` and `RunOptions`. ([e43ea8c](https://github.com/wasmerio/wasmer-js/commit/e43ea8c622aa163ca6a61f70f41cf2db932850eb))

## [0.2.0](https://github.com/wasmerio/wasmer-js/compare/wasmer-sdk-v0.1.0...wasmer-sdk-v0.2.0) (2023-11-24)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wasmer/sdk",
"version": "0.2.0",
"version": "0.3.0",
"main": "dist/Library.cjs",
"module": "dist/Library.mjs",
"unpkg": "dist/Library.umd.js",
Expand Down

0 comments on commit 691c766

Please sign in to comment.