Releases: Chia-Network/clvm_tools
Releases · Chia-Network/clvm_tools
0.4.10
What's Changed
- Update Managed Files by @ChiaAutomation in #113
- Update Managed Files by @ChiaAutomation in #114
- Bump actions/checkout from 3 to 4 by @dependabot in #115
- Bump github/codeql-action from 2 to 3 by @dependabot in #116
- Bump actions/setup-python from 4 to 5 by @dependabot in #117
- Update Managed Files by @ChiaAutomation in #118
- Update Managed Files by @ChiaAutomation in #119
- Update Managed Files by @ChiaAutomation in #120
- Update Managed Files by @ChiaAutomation in #121
- Update Managed Files by @ChiaAutomation in #122
- Remove 3.8 and update to build binary and sdist by @emlowe in #123
New Contributors
- @dependabot made their first contribution in #115
Full Changelog: 0.4.9...0.4.10
0.4.9
What's Changed
- Updated License by @ChiaAutomation in #111
- Update Managed Files by @ChiaAutomation in #112
- Add python 3.12 by @emlowe in #110
New Contributors
- @ChiaAutomation made their first contribution in #111
Full Changelog: 0.4.8...0.4.9
0.4.8
What's Changed
- correct
\
to\\
inprintable_characters
by @altendky in #109 - Paginate hex files every 80 characters by @Quexington in #76
- Add types for functions called by other modules by @aqk in #95
Full Changelog: 0.4.7...0.4.8
0.4.7
What's Changed
- when decompiling, don't consider new-line or double-quote printable by @arvidn in #97
- fix compatibility with most recent version of clvm_rs by @arvidn in #100
- Fix tests from
clvm.tests
. by @richardkiss in #101 - Add pypi trusted publishing by @cmmarslender in #104
- Remove python 3.7 from test matrix by @emlowe in #107
- Update to clvm_tools_rs 0.1.37 by @prozacchiwawa in #106
- stop using deprecated
distutils.dep_util
by @altendky in #108
Full Changelog: 0.4.6...0.4.7
0.4.6
What's Changed
- Python 3.11 by @altendky in #87
- hint clvm_tools.binutils.disassemble() by @altendky in #90
- Create codeql-analysis.yml by @wallentx in #91
- don't publish wheel to test pypi in CI by @arvidn in #93
- simplify back-end selection in brun, and fix auto-detection by @arvidn in #92
- Update to latest clvm_tools_rs and add test case by @prozacchiwawa in #94
New Contributors
Full Changelog: 0.4.5...0.4.6
Incorporate clvm_tools_rs' compiler in the 'run' personality
20220616 run in rust (#89) * Run with stage 2 (the 'chialisp' everyone uses) now invokes rust's launch_tool which emulates run. run -s0 does the same thing as brun, so porting it isn't as important (it just runs clvm) and -s1 runs clvm, but adds a 'bind' primitive that never appeared in mainline chialisp. * Ensure that we pass through --help to the rust code * Streamline change to clvm_tools_rs' run by deprecating stage_1 * Restore formatting * Bump after bug fixes