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 Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ check-version:
bash ./extras/check_version.sh

.PHONY: check
check: flake8 isort-check mypy check-version
check: check-version flake8 isort-check mypy

# formatting:

Expand Down
3 changes: 0 additions & 3 deletions extras/check_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,4 @@ if [[ x${PACKAGE_VERSION}x != x${OPENAPI_VERSION}x ]]; then
EXITCODE=-1
fi

if [[ ${EXITCODE} == 0 ]]; then
echo OK
fi
exit $EXITCODE
2 changes: 1 addition & 1 deletion hathor/cli/openapi_files/openapi_base.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
],
"info": {
"title": "Hathor API",
"version": "0.40.0"
"version": "0.40.1"
},
"consumes": [
"application/json"
Expand Down
2 changes: 1 addition & 1 deletion hathor/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = '0.40.0'
__version__ = '0.40.1'
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

[tool.poetry]
name = "hathor"
version = "0.40.0"
version = "0.40.1"
description = "Hathor Network full-node"
authors = ["Hathor Team <contact@hathor.network>"]
license = "Apache-2.0"
Expand Down