Skip to content

Commit f38856e

Browse files
committed
Update CHANGELOG.md
1 parent 3634305 commit f38856e

File tree

5 files changed

+3290
-22
lines changed

5 files changed

+3290
-22
lines changed

CHANGELOG.md

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Changelog
2+
3+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
4+
and we follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
5+
6+
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
7+
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
8+
9+
- [[Unreleased]](#unreleased)
10+
- [Added](#added)
11+
12+
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
13+
14+
## [Unreleased]
15+
16+
### Added
17+
18+
- New transaction builder steps: `SubmitProposal` for attaching governance
19+
proposals and `SubmitVotingProcedure` for voting. Note that there is currently
20+
no support for providing a credential witness for the optional constitution
21+
guardrails script, which restricts certain proposal types as outlined in
22+
[CIP-1694 Specification](https://github.com/cardano-foundation/CIPs/blob/b81611632f9dcea0b87d7d96cf673a720c77e929/CIP-1694/README.md#guardrails-script).
23+
([#3](https://github.com/mlabs-haskell/purescript-cardano-transaction-builder/pull/3))
24+
25+
- Support for Conway era certificates.
26+
([#3](https://github.com/mlabs-haskell/purescript-cardano-transaction-builder/pull/3))

Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ check-format: check-explicit-exports
2929
@eslint --quiet ${js-sources} --parser-options 'sourceType: module'
3030

3131
format:
32+
@doctoc CHANGELOG.md --github --notitle
3233
@purs-tidy format-in-place ${ps-sources}
3334
@nixpkgs-fmt ${nix-sources}
3435
@make check-format

flake.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
description = "purescript-cardano-types";
2+
description = "purescript-cardano-transaction-builder";
33

44
# Allow IFD in `nix flake check`.
55
nixConfig.allow-import-from-derivation = "true";
66

77
nixConfig = {
88
extra-substituters = [ "https://plutonomicon.cachix.org" ];
99
extra-trusted-public-keys = [ "plutonomicon.cachix.org-1:evUxtNULjCjOipxwAnYhNFeF/lyYU1FeNGaVAnm+QQw=" ];
10-
bash-prompt = "\\[\\e[0m\\][\\[\\e[0;2m\\]nix-develop \\[\\e[0;1m\\]ps-cardano-types@\\[\\033[33m\\]$(git rev-parse --abbrev-ref HEAD) \\[\\e[0;32m\\]\\w\\[\\e[0m\\]]\\[\\e[0m\\]$ \\[\\e[0m\\]";
10+
bash-prompt = "\\[\\e[0m\\][\\[\\e[0;2m\\]nix-develop \\[\\e[0;1m\\]ps-cardano-tx-builder@\\[\\033[33m\\]$(git rev-parse --abbrev-ref HEAD) \\[\\e[0;32m\\]\\w\\[\\e[0m\\]]\\[\\e[0m\\]$ \\[\\e[0m\\]";
1111
};
1212

1313
inputs = {

0 commit comments

Comments
 (0)