File tree 2 files changed +26
-1
lines changed
2 files changed +26
-1
lines changed Original file line number Diff line number Diff line change
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
6
+ and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
+
8
+ ## [ v0.1.1] ( https://github.com/wowica/xander/releases/tag/v0.1.1 ) (2025-02-19)
9
+
10
+ ### Fixed
11
+
12
+ - Issue where the ledger state tracked by the Query OTP process wouldn't be
13
+ updated after establishing a connection. The result was that queries would
14
+ always return the same value.
15
+
16
+ ## [ v0.1.0] ( https://github.com/wowica/xander/releases/tag/v0.1.0 ) (2024-02-17)
17
+
18
+ ### Added
19
+
20
+ - Establish connection to Cardano node via Unix socket file or Demeter.run URL
21
+ - Support for Ledger State Queries:
22
+ * ` :get_current_era `
23
+ * ` :get_current_block_height `
24
+ * ` :get_epoch_number `
25
+ * ` :get_current_tip `
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ defmodule Xander.MixProject do
3
3
4
4
@ description "An Elixir library for communicating with a Cardano node"
5
5
@ source_url "https://github.com/wowica/xander"
6
- @ version "0.1.0 "
6
+ @ version "0.1.1 "
7
7
8
8
def project do
9
9
[
You can’t perform that action at this time.
0 commit comments