Skip to content

Commit f3054bc

Browse files
committed
Merge #158: chore(release): bump version to 0.12.2
8ac41b9 docs: introduce `CHANGELOG.md` (Leonardo Lima) dc1a357 chore(release): bump version to 0.12.2 (Leonardo Lima) Pull request description: fixes #155 It bumps the version to `0.12.2` and also introduces the missing `CHANGELOG` file, as of this release we should keep track of the changes and update it on the `CHANGELOG` file. ACKs for top commit: oleonardolima: self-ACK 8ac41b9 Tree-SHA512: 23a82e965bae218b812d50c88f9a12a8ce2b78d9fe0d41edf0b3d00d79a05e53ed20cbdc58a44a2be2d346864762569be41d89f28a58a3f729203a64c64ebfc7
2 parents de249b6 + 8ac41b9 commit f3054bc

2 files changed

Lines changed: 45 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Changelog
2+
3+
All notable changes to this project can be found here and in each release's git tag and can be viewed with `git tag -ln100 "v*"`.
4+
5+
Contributors do not need to change this file but do need to add changelog details in their PR descriptions. The person making the next release will collect changelog details from included PRs and edit this file prior to each release.
6+
7+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
8+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
9+
10+
## [v0.12.2]
11+
12+
### Added
13+
14+
- feat: add new `get_address_utxos` method #134
15+
- feat: add new `Utxo` and `UtxoStatus` API types #134
16+
- feat: add justfile #140
17+
- feat(api): add `ScriptHashTxsSummary` and `ScriptHashStats` structs #143
18+
- feat(api): add `BlockInfo` struct #143
19+
- feat(api): add `MempoolStats` struct #143
20+
- feat(api): add `MempoolRecentTx` struct #143
21+
- feat(client): add `get_tx_outspends` method (`GET /tx/:txid/outspends`) #143
22+
- feat(client): add `get_scripthash_stats` method (`GET /scripthash/:hash`) #143
23+
- feat(client): add `get_mempool_address_txs` method (`GET /address/:address/txs/mempool`) #143
24+
- feat(client): add `get_mempool_scripthash_txs` method (`GET /scripthash/:hash/txs/mempool`) #143
25+
- feat(client): add `get_scripthash_utxos` method (`GET /scripthash/:hash/utxo`) #143
26+
- feat(client): add `get_block_info` method (`GET /block/:hash`) #143
27+
- feat(client): add `get_block_txids` method (`GET /block/:hash/txids`) #143
28+
- feat(client): add `get_block_txs` method (`GET /block/:hash/txs[/:start_index]`) #143
29+
- feat(client): add `get_mempool_stats` method (`GET /mempool`) #143
30+
- feat(client): add `get_mempool_txids` method (`GET /mempool/txids`) #143
31+
- feat(client): add `get_mempool_recent_txs` method (`GET /mempool/recent`) #143
32+
- chore(docs): add missing documentation #147
33+
- feat(client): add new `submit_package` API to `BlockingClient` and `AsyncClient` #114
34+
- feat(api): add new `SubmitPackageResult`, `TxResult`, and `MempoolFeesSubmitPackage` API structures #114
35+
36+
### Changed
37+
38+
- fix(ci): pin dependencies to MSRV supported versions #138
39+
- chore(deps): bump webpki-roots to 1.0.4, pin quote to 1.0.41 #139
40+
- feat(ci): always run CI workflow #144
41+
- fix(ci): bump pinned webpki-roots to 1.0.5 and pin other dependencies #153
42+
- feat(client): update the `post_request_hex` method to `post_request_bytes`, now handling `query_params` and having `Response` as return type #114
43+
- feat(client): update the internals of the `broadcast` method to use new `post_request` and `post_request_bytes`, with no breaking change #114
44+
- chore(submit_package): use `unwrap_or_default` instead of `.unwrap()` #159

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "esplora-client"
3-
version = "0.12.1"
3+
version = "0.12.2"
44
edition = "2021"
55
authors = [
66
"Alekos Filini <alekos.filini@gmail.com>",

0 commit comments

Comments
 (0)