Skip to content

Commit 48a0d56

Browse files
Bump secp256k1 to v0.4.0 (#19)
* Bump secp256k1 to v0.4.0 * Setuptools fix
1 parent 55f5fef commit 48a0d56

File tree

4 files changed

+18
-10
lines changed

4 files changed

+18
-10
lines changed

.pre-commit-config.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
repos:
99
- repo: https://github.com/pre-commit/pre-commit-hooks
10-
rev: v4.4.0
10+
rev: v4.5.0
1111
hooks:
1212
- id: trailing-whitespace
1313
- id: end-of-file-fixer
@@ -27,7 +27,7 @@ repos:
2727
# - id: name-tests-test
2828
- id: check-toml
2929
- repo: https://github.com/DavidAnson/markdownlint-cli2
30-
rev: v0.8.1
30+
rev: v0.11.0
3131
hooks:
3232
- id: markdownlint-cli2-fix
3333
name: markdownlint-cli2-fix (in place fixes)
@@ -38,13 +38,13 @@ repos:
3838
args: [--notice=COPYRIGHT]
3939
files: python
4040
- repo: https://github.com/asottile/pyupgrade
41-
rev: v3.9.0
41+
rev: v3.15.0
4242
hooks:
4343
- id: pyupgrade
4444
args: [--py38-plus]
4545
# exclude: *fixtures
4646
- repo: https://github.com/PyCQA/autoflake
47-
rev: v2.2.0
47+
rev: v2.2.1
4848
hooks:
4949
- id: autoflake
5050
args:
@@ -81,7 +81,7 @@ repos:
8181
# https://pre-commit.com/#top_level-default_language_version
8282
# language_version: python3.11
8383
- repo: https://github.com/PyCQA/flake8
84-
rev: 6.0.0
84+
rev: 6.1.0
8585
hooks:
8686
- id: flake8
8787
additional_dependencies: [Flake8-pyproject]
@@ -92,6 +92,6 @@ repos:
9292
# disable B101 (Test for use of assert)
9393
args: ["-s", "B101"]
9494
- repo: https://github.com/pre-commit/mirrors-mypy
95-
rev: v1.4.1
95+
rev: v1.7.1
9696
hooks:
9797
- id: mypy

HISTORY.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,18 @@
22

33
Notable changes to the codebase are documented here.
44

5-
## v0.4.0 (unreleased)
5+
## v0.5.0 (unreleased)
66

77
Major changes include:
88

9+
## v0.4.0
10+
11+
Major changes include:
12+
13+
- Wrapped
14+
[libsecp256k1 0.4.0](https://github.com/bitcoin-core/secp256k1/releases/tag/v0.4.0)
15+
(199d27c)
16+
917
## v0.3.0
1018

1119
Major changes include:

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name="btclib_libsecp256k1"
3-
version="0.3.0"
3+
version="0.4.0"
44
description="Simple python bindings to libsecp256k1"
55
readme = "README.md"
66
license = {text = "MIT"}
@@ -41,7 +41,7 @@ issues = "https://github.com/btclib-org/btclib_libsecp256k1/issues"
4141
pull_requests = "https://github.com/btclib-org/btclib_libsecp256k1/pulls"
4242

4343
[build-system]
44-
requires = ["hatchling", "cffi>=1.0.0"]
44+
requires = ["hatchling", "cffi>=1.0.0", 'setuptools; python_version>="3.12"']
4545
build-backend = "hatchling.build"
4646

4747
[tool.hatch.build.targets.wheel.hooks.custom]

secp256k1

Submodule secp256k1 updated 64 files

0 commit comments

Comments
 (0)