Bump chiapos to 0.12.35, catch up changelog
This commit is contained in:
parent
86ada7fcb1
commit
8f3d73dece
2 changed files with 20 additions and 1 deletions
19
CHANGELOG.md
19
CHANGELOG.md
|
@ -6,6 +6,25 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||
and this project does not yet adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html)
|
||||
for setuptools_scm/PEP 440 reasons.
|
||||
|
||||
## Unreleased
|
||||
|
||||
# Added
|
||||
- F1 generation in the plotter is now fully parallel for a small speedup.
|
||||
- We have bitfield optimized phase 2 of plotting. There is only about a 1% increase in speed from this change but there is a 12% decrease in writes with a penalty of 3% more reads. More details in [PR 120](https://github.com/Chia-Network/chiapos/pull/120)
|
||||
- You can now specify which private key to use for `chia plots create`. After obtaining the fingerprint from `chia keys show`, try `chia plots create -a FINGERPRINT`. Thanks to @eFishCent for this pull request!
|
||||
|
||||
# Changed
|
||||
- We have moved from using gulrak/filesystem across all platforms to only using it on MacOS. It's required on MacOS as we are still targeting Mojave compatibility. This should resolve Windows path issues.
|
||||
- The rate limited wallet was updated and re-factored.
|
||||
- All appropriate Chialisp smart transactions have been updated to use aggsig_me.
|
||||
- Full node should be more aggressive about finding other peers.
|
||||
- Peer disconnect messages are now set to log level INFO down from WARNING.
|
||||
- aiohttp, cbor2, clvm-tools, cryptography, and sortedcontainers have been upgraded to their current versions.
|
||||
|
||||
# Fixed
|
||||
- A segfault caused by memory leaks in bls-library has been fixed. This should end the random farmer and harvester crashes over time as outlined in [Issue 500](https://github.com/Chia-Network/chia-blockchain/issues/500).
|
||||
- Starting with recent setuptools fixes, we can no longer pass an empty string to the linker on Windows when building binary wheels in the sub repos. Thanks @jaraco for tracking this down.
|
||||
|
||||
## [1.0beta17] aka Beta 1.17 - 2020-10-22
|
||||
|
||||
### Changed
|
||||
|
|
2
setup.py
2
setup.py
|
@ -6,7 +6,7 @@ dependencies = [
|
|||
"blspy==0.2.7", # Signature library
|
||||
"chiavdf==0.12.26", # timelord and vdf verification
|
||||
"chiabip158==0.16", # bip158-style wallet filters
|
||||
"chiapos==0.12.33", # proof of space
|
||||
"chiapos==0.12.35", # proof of space
|
||||
"clvm==0.5.3",
|
||||
"clvm_tools==0.1.7",
|
||||
"aiohttp==3.7.2", # HTTP server for full node rpc
|
||||
|
|
Loading…
Reference in a new issue