Skip to content
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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.7.0"
".": "0.7.1"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@
Формат основан на [Keep a Changelog](https://keepachangelog.com/ru/1.1.0/),
проект придерживается [Semantic Versioning](https://semver.org/lang/ru/).

## [0.7.1](https://github.com/devAsmodeus/Hope-Hash/compare/v0.7.0...v0.7.1) (2026-05-03)


### Bug Fixes

* solo prev-hash BLOCKER + S1-S4 doc fixes + release-please ([#9](https://github.com/devAsmodeus/Hope-Hash/issues/9)) ([aeac6d7](https://github.com/devAsmodeus/Hope-Hash/commit/aeac6d7dccf4878f784d2ebf3845967a10fd8c35))

## [Unreleased]

### Исправлено
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "hope-hash"
version = "0.7.0" # x-release-please-version
version = "0.7.1" # x-release-please-version
description = "Учебный solo BTC miner на чистом Python stdlib"
readme = "README.md"
requires-python = ">=3.11"
Expand Down
2 changes: 1 addition & 1 deletion src/hope_hash/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Hope-Hash — учебный solo BTC miner на чистом stdlib."""

__version__ = "0.7.0" # x-release-please-version
__version__ = "0.7.1" # x-release-please-version

from . import sha_native
from .banner import print_banner, render_banner
Expand Down