-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make a copy of the html header into a new assets folder this time. --------- Co-authored-by: Ryan Goree <[email protected]>
- Loading branch information
Showing
12 changed files
with
30 additions
and
29 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ members = [ | |
|
||
[workspace.package] | ||
name = "hyperdrive-rs" | ||
version = "0.16.5" | ||
version = "0.16.6" | ||
authors = [ | ||
"Alex Towle <[email protected]>", | ||
"Dylan Paiton <[email protected]>", | ||
|
@@ -29,9 +29,9 @@ repository = "https://github.com/delvtech/hyperdrive-rs" | |
description = "API for simulating Hyperdrive smart contract transactions." | ||
|
||
[workspace.dependencies] | ||
fixedpointmath = { version = "0.16.5", path="crates/fixedpointmath" } | ||
hyperdrive-wrappers = { version = "0.16.5", path="crates/hyperdrive-wrappers" } | ||
hyperdrive-math = { version = "0.16.5", path="crates/hyperdrive-math" } | ||
fixedpointmath = { version = "0.16.6", path="crates/fixedpointmath" } | ||
hyperdrive-wrappers = { version = "0.16.6", path="crates/hyperdrive-wrappers" } | ||
hyperdrive-math = { version = "0.16.6", path="crates/hyperdrive-math" } | ||
|
||
[workspace.lints.clippy] | ||
comparison_chain = "allow" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[project] | ||
name = "hyperdrivepy" | ||
version = "0.16.5" | ||
version = "0.16.6" | ||
authors = [ | ||
{ name = "Dylan Paiton", email = "[email protected]" }, | ||
{ name = "Matthew Brown", email = "[email protected]" }, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,16 @@ | ||
#!/bin/bash | ||
|
||
echo "copy assets into crates" | ||
mkdir crates/fixedpointmath/assets && cp assets/katex_header.html crates/fixedpointmath/assets/ | ||
mkdir crates/hyperdrive-wrappers/assets && cp assets/katex_header.html crates/hyperdrive-wrappers/assets/ | ||
mkdir crates/hyperdrive-math/assets && cp assets/katex_header.html crates/hyperdrive-math/assets/ | ||
|
||
echo "publish rust crates to crates.io" | ||
cargo publish --token $1 -p fixedpointmath | ||
BUILD_DISABLED=true cargo publish --token $1 -p hyperdrive-wrappers | ||
cargo publish --token $1 -p hyperdrive-math | ||
cargo publish --token $1 -p hyperdrive-math | ||
|
||
echo "remove crate asset directories" | ||
rm -rf crates/fixedpointmath/assets | ||
rm -rf crates/hyperdrive-wrappers/assets | ||
rm -rf crates/hyperdrive-math/assets |