From 1e782830f761620bf0a66c034f86d480fb1cecea Mon Sep 17 00:00:00 2001 From: Sachin Meier Date: Fri, 1 Mar 2024 09:08:34 -0500 Subject: [PATCH 1/3] update changelog for 0.1.8 --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 05f8c4b..9c6901c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ 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.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.1.8] - 2023-03-01 +### Added +- Fix warning emitted from String.slice with negative step when parsing amountful BOLT11 invoices. ## [0.1.7] - 2023-01-16 ### Added From 7b0c99cbd995a9e2adada0d90197fb33d82f1df8 Mon Sep 17 00:00:00 2001 From: Sachin Meier Date: Fri, 1 Mar 2024 12:43:42 -0500 Subject: [PATCH 2/3] bump bitcoinex version, elixir & erlang version --- .tool-versions | 4 ++-- mix.exs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.tool-versions b/.tool-versions index 440d747..53ee0b1 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1,2 +1,2 @@ -elixir 1.14.2-otp-25 -erlang 25.1.2 +elixir 1.16.1-otp-26 +erlang 26.2.1 diff --git a/mix.exs b/mix.exs index 1385e50..f9e18a1 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Bitcoinex.MixProject do def project do [ app: :bitcoinex, - version: "0.1.7", + version: "0.1.8", elixir: "~> 1.11", package: package(), start_permanent: Mix.env() == :prod, From 4581eb3c190eecec306b71c9308dac69aedbbac8 Mon Sep 17 00:00:00 2001 From: Sachin Meier Date: Mon, 4 Mar 2024 10:17:51 -0500 Subject: [PATCH 3/3] fix date --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c6901c..0143ca9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ 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.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [0.1.8] - 2023-03-01 +## [0.1.8] - 2024-03-01 ### Added - Fix warning emitted from String.slice with negative step when parsing amountful BOLT11 invoices.