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
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ jobs:
- pair:
elixir: 1.18.4
otp: 27.2.1
- pair:
elixir: 1.19.5
otp: 28.4
lint: lint

runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
elixir 1.18.4-otp-28
erlang 28.0.1
elixir 1.19.5-otp-28
erlang 28.4
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.7.10 (2026-03-11)

- Allow parsing incomplete paths ([#105](https://github.com/ayrat555/cryptopunk/pull/105))

## 0.7.9 (2025-08-05)

- Update NIFs to support newer versions of Linux systems ([#86](https://github.com/ayrat555/cryptopunk/pull/86), [#87](https://github.com/ayrat555/cryptopunk/pull/87))
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The package can be installed by adding `cryptopunk` to your list of dependencies
```elixir
def deps do
[
{:cryptopunk, "~> 0.7.9"}
{:cryptopunk, "~> 0.7.10"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule Cryptopunk.MixProject do
def project do
[
app: :cryptopunk,
version: "0.7.9",
version: "0.7.10",
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
deps: deps(),
Expand Down
6 changes: 2 additions & 4 deletions test/cryptopunk/key/wif_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ defmodule Cryptopunk.Key.WIFTest do
describe "decode/2" do
test "decodes key on mainnet with compression" do
assert <<50, 8, 92, 222, 223, 155, 132, 50, 53, 227, 114, 79, 88, 11, 248, 24, 239, 76, 236,
39, 195, 198, 112, 133, 224, 41, 65, 138, 91, 47, 111,
43>> ==
39, 195, 198, 112, 133, 224, 41, 65, 138, 91, 47, 111, 43>> ==
WIF.decode(
"Kxty66SRDbbSYUWL76fUaSuBfBuNDj7SCvc6m5ywpEBqq2tBh1PG",
network: :mainnet,
Expand All @@ -45,8 +44,7 @@ defmodule Cryptopunk.Key.WIFTest do

test "decodes key on testnet without compression" do
assert <<50, 8, 92, 222, 223, 155, 132, 50, 53, 227, 114, 79, 88, 11, 248, 24, 239, 76, 236,
39, 195, 198, 112, 133, 224, 41, 65, 138, 91, 47, 111,
43>> ==
39, 195, 198, 112, 133, 224, 41, 65, 138, 91, 47, 111, 43>> ==
WIF.decode(
"cPFxZ1SGefHhhuybVWUbwmQFHRCmtBD8GxkZsWSTKLqr5muDxfBL",
network: :testnet
Expand Down
Loading