Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 4.0.0 #279

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
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
7 changes: 5 additions & 2 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
## [3.13.0] - N/A


## [4.0.0] - 2024-11-13

### Added

- Simplify filenames by using a hashed prefix instead of the full mnemonic, enhancing portability).
- `hashKey` for Shelley style
- Key derivation support for DRep, CCCold and CCHot in accordance to [CIP--105](https://github.com/cardano-foundation/CIPs/tree/master/CIP-0105). Also supported in CLI.
- Key derivation support for DRep, CCCold and CCHot in accordance with [CIP-0105](https://github.com/cardano-foundation/CIPs/tree/master/CIP-0105). Also supported in CLI.
- Fix field for staking scripts in AddressInfo.
- Rename infoScriptHash field in AddressInfo to infoSpendingScriptHash.
- Get signing key and chain code from extended signing key via `cardano-address key private`
Expand Down
4 changes: 2 additions & 2 deletions command-line/cardano-addresses-cli.cabal
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
cabal-version: 1.12

name: cardano-addresses-cli
version: 3.12.0
version: 4.0.0
synopsis: Utils for constructing a command-line on top of cardano-addresses.
description: Please see the README on GitHub at <https://github.com/IntersectMBO/cardano-addresses>
category: Cardano
homepage: https://github.com/IntersectMBO/cardano-addresses#readme
bug-reports: https://github.com/IntersectMBO/cardano-addresses/issues
author: IOHK
maintainer: operations@iohk.io
copyright: 2021-2022 IOHK
copyright: 2021-2022 Input Output Global Inc (IOG), 2023-2024 Intersect
license: Apache-2.0
build-type: Simple
extra-source-files:
Expand Down
4 changes: 2 additions & 2 deletions core/cardano-addresses.cabal
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
cabal-version: 1.12

name: cardano-addresses
version: 3.12.0
version: 4.0.0
synopsis: Library utilities for mnemonic generation and address derivation.
description: Please see the README on GitHub at <https://github.com/IntersectMBO/cardano-addresses>
category: Cardano
homepage: https://github.com/IntersectMBO/cardano-addresses#readme
bug-reports: https://github.com/IntersectMBO/cardano-addresses/issues
author: IOHK
maintainer: operations@iohk.io
copyright: 2021-2022 IOHK
copyright: 2021-2022 Input Output Global Inc (IOG), 2023-2024 Intersect
license: Apache-2.0
build-type: Simple

Expand Down
4 changes: 2 additions & 2 deletions jsapi/cardano-addresses-jsapi.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 3.0
name: cardano-addresses-jsapi
version: 3.12.0
version: 4.0.0
synopsis: Javascript FFI for cardano-addresses.
description: This package provides functions callable from Javascript on top of
which a TypeScript API can be built. It uses the cardano-addresses-ghcjs
Expand All @@ -11,7 +11,7 @@ homepage: https://github.com/IntersectMBO/cardano-addresses#readme
bug-reports: https://github.com/IntersectMBO/cardano-addresses/issues
author: IOHK
maintainer: operations@iohk.io
copyright: 2021 IOHK
copyright: 2021 Input Output Global Inc (IOG), 2023-2024 Intersect
license: Apache-2.0
build-type: Simple

Expand Down
2 changes: 1 addition & 1 deletion jsapi/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion jsapi/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "3.12.0",
"version": "4.0.0",
"license": "Apache-2.0",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions jsbits/cardano-addresses-jsbits.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 1.12

name: cardano-addresses-jsbits
version: 3.12.0
version: 4.0.0
synopsis: Javascript code for ghcjs build of cardano-addresses.
description: This package supports ghcjs compilation of cardano-addresses with
Javascript wrappers and Emscripten builds of the cryptonite C
Expand All @@ -11,7 +11,7 @@ homepage: https://github.com/IntersectMBO/cardano-addresses#readme
bug-reports: https://github.com/IntersectMBO/cardano-addresses/issues
author: IOHK
maintainer: operations@iohk.io
copyright: 2021-2022 IOHK
copyright: 2021-2022 Input Output Global Inc (IOG), 2023-2024 Intersect
license: Apache-2.0
build-type: Simple

Expand Down
Loading