Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Round two of fixing #124 #129

Merged
merged 1 commit into from
Feb 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,8 @@ jobs:
- name: Build | Run
run: cargo run -- -h

# TODO: finish this up as part of #57
# # build examples via our newly built debug artifact
# - name: Setup | wasm-bindgen
# run: cargo install wasm-bindgen-cli --version 0.2.70
# - name: Build | Examples
# run: ${{ matrix.binPath }} --config=examples/yew/Trunk.toml build
# Build examples via our newly built debug artifact.
- name: Setup | wasm-bindgen
run: cargo install wasm-bindgen-cli --version 0.2.70
- name: Build | Examples
run: ${{ matrix.binPath }} --config=examples/yew/Trunk.toml build
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Subheadings to categorize changes are `added, changed, deprecated, removed, fixe

## Unreleased

## 0.8.1
## 0.8.2 & 0.8.1
### fixed
- Fixed [#124](https://github.com/thedodd/trunk/issues/124) where path canonicalization was being performed on a path which did not yet exist, and as it turns out was already in canonical form.

Expand Down
105 changes: 58 additions & 47 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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trunk"
version = "0.8.1"
version = "0.8.2"
edition = "2018"
description = "Build, bundle & ship your Rust WASM application to the web."
license = "MIT/Apache-2.0"
Expand Down
Loading