Skip to content
Open
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
13 changes: 10 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
## [Unreleased]
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

## [1.1.0] - 2026-02-02

### Added

Expand All @@ -7,11 +13,12 @@
### Changed

- Drop base58 dependency. Port base58 code directly in-tree as a `base58` module.
- Drop ecdsa dependency. Replace with own implementation of point addition.

## 1.0.1
## [1.0.1] - 2024-09-03

- Support Python 3.8

## 1.0.0
## [1.0.0] - 2024-08-20

- First release forked from Antoine Poinsot's python-bip32.
28 changes: 17 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,28 @@
[tool.poetry]
[project]
name = "slip10"
version = "1.0.1"
version = "1.1.0"
description = "A reference implementation of the SLIP-0010 specification, which generalizes the BIP-0032 derivation scheme for private and public key pairs in hierarchical deterministic wallets for the curves secp256k1, NIST P-256, ed25519 and curve25519."
authors = ["Antoine Poinsot <darosior@protonmail.com>", "Andrew R. Kozlik <andrew.kozlik@satoshilabs.com>"]
maintainers = ["Andrew R. Kozlik <andrew.kozlik@satoshilabs.com>"]

# slip10/ripemd160.py is MIT
license = "BSD-3-Clause AND MIT"
license-files = [ "LICENCE" ]
dynamic = [ "readme" ]
authors = [
{ name = "Antoine Poinsot", email = "darosior@protonmail.com" },
{ name = "Andrew R. Kozlik", email = "andrew.kozlik@satoshilabs.com" },
]
maintainers = [
{ name = "Andrew R. Kozlik", email = "andrew.kozlik@satoshilabs.com" },
]
keywords = [ "bitcoin", "slip10", "hdwallet" ]

[project.urls]
repository = "https://github.com/trezor/python-slip10"

[tool.poetry]
readme = [
"README.md",
"CHANGELOG.md",
]
repository = "https://github.com/trezor/python-slip10"
keywords = ["bitcoin", "slip10", "hdwallet"]

[tool.poetry.dependencies]
cryptography = "*"
Expand All @@ -27,10 +37,6 @@ isort = "^5"
exceptiongroup = { version = "*", markers = "python_version == '3.10'" }
tomli = { version = "*", markers = "python_version == '3.10'" }

[project]
license = "BSD-3-Clause AND MIT"
license-files = ["LICENCE"]

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
Expand Down