Skip to content

Commit

Permalink
chore: bump version and update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Shr1ftyy committed Oct 29, 2024
1 parent 96d115a commit 0500869
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ There are three core files.
contracts of user-defined pools on the Ethereum Network to calculate the miners' allocation's
yields. The scores of miners are determined based on their relative aggregate
yields, and miners which have similar allocations to other miners will be penalized if they are
not perceived as being original. If miners fail to respond in ~10 seconds after receiving the
not perceived as being original. If miners fail to respond in ~45 seconds after receiving the
request they are scored
poorly.
The best allocating miner will receive the most emissions. For more information on how
Expand Down
2 changes: 1 addition & 1 deletion min_compute.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# Even then - storage isn't utilized very often - so disk performance won't really be a bottleneck vs, CPU, RAM,
# and network bandwidth.

version: '1.5.1' # update this version key as needed, ideally should match your release version
version: '1.5.2' # update this version key as needed, ideally should match your release version

compute_spec:

Expand Down
2 changes: 1 addition & 1 deletion sturdy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# DEALINGS IN THE SOFTWARE.

# Define the version of the template module.
__version__ = "1.5.1"
__version__ = "1.5.2"
version_split = __version__.split(".")
__spec_version__ = (1000 * int(version_split[0])) + (10 * int(version_split[1])) + (1 * int(version_split[2]))

Expand Down

0 comments on commit 0500869

Please sign in to comment.