Bump version to 0.16.0, update `CHANGELOG.md`

This commit is contained in:
Yuta Saito 2022-06-15 22:54:06 +09:00
parent c92f85c543
commit 29a9b587b2
4 changed files with 23 additions and 4 deletions

View File

@ -1,3 +1,22 @@
# 0.16.0 (15 June 2022)
This release adds several enhancements in `carton test`, and allows you to customize optimization strategy.
One of the notable enhancement is `--headless` option added in `carton test`, which runs tests using
W3C WebDriver protocol
**Merged pull requests:**
- Revert "Use `--static-swift-stdlib` for easier distribution on Linux" ([#365](https://github.com/swiftwasm/carton/pull/365)) via [@MaxDesiatov](https://github.com/MaxDesiatov)
- Update SwiftPM dependencies ([#363](https://github.com/swiftwasm/carton/pull/363)) via [@MaxDesiatov](https://github.com/MaxDesiatov)
- Headless test runner ([#362](https://github.com/swiftwasm/carton/pull/362)) via [@kateinoigakukun](https://github.com/kateinoigakukun)
- Add option to disable wasm optimizations ([#359](https://github.com/swiftwasm/carton/pull/359)) via [@ephemer](https://github.com/ephemer)
- Update SwiftPM dependencies ([#360](https://github.com/swiftwasm/carton/pull/360)) via [@MaxDesiatov](https://github.com/MaxDesiatov)
- Use `--static-swift-stdlib` for easier distribution on Linux ([#343](https://github.com/swiftwasm/carton/pull/343)) via [@MaxDesiatov](https://github.com/MaxDesiatov)
- Add `--prebuilt-test-bundle-path` option to `carton test` ([#358](https://github.com/swiftwasm/carton/pull/358)) via [@kateinoigakukun](https://github.com/kateinoigakukun)
- Update SwiftPM dependencies ([#357](https://github.com/swiftwasm/carton/pull/357)) via [@MaxDesiatov](https://github.com/MaxDesiatov)
- Fix linter error in `Builder.swift` ([#356](https://github.com/swiftwasm/carton/pull/356)) via [@MaxDesiatov](https://github.com/MaxDesiatov)
- Clean up integration tests and fixtures ([#355](https://github.com/swiftwasm/carton/pull/355)) via [@kateinoigakukun](https://github.com/kateinoigakukun)
# 0.15.3 (24 May 2022)
This release fixes an issue when `carton test` wouldn't be finished after large number of test suites, and

View File

@ -12,4 +12,4 @@
// See the License for the specific language governing permissions and
// limitations under the License.
public let cartonVersion = "0.15.3"
public let cartonVersion = "0.16.0"

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "carton",
"version": "0.15.3",
"version": "0.16.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "carton",
"version": "0.15.3",
"version": "0.16.0",
"license": "Apache-2.0",
"devDependencies": {
"@wasmer/wasi": "^0.12.0",

View File

@ -1,6 +1,6 @@
{
"name": "carton",
"version": "0.15.3",
"version": "0.16.0",
"description": "📦 Watcher, bundler, and test runner for your SwiftWasm apps ",
"main": "index.js",
"repository": {