Skip to content

Commit

Permalink
chore(release): bump version to v3.1.0 and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jamaljsr committed Dec 8, 2024
1 parent be508b1 commit 63aa9ab
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 21 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,36 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [3.1.0](https://github.com/jamaljsr/polar/compare/v3.0.0...v3.1.0)

This minor release is needed to support the latest released versions of `litd` and `tapd`.

### Features

- Add Description field when creating a new network by kelvinator07 in https://github.com/jamaljsr/polar/pull/978
- Add full support for decimal display for TAP assets by jamaljsr in https://github.com/jamaljsr/polar/pull/1040

### Node Updates

- Add support for tapd v0.5.0-alpha.rc1 by jamaljsr in https://github.com/jamaljsr/polar/pull/1064
- Add support for lnd v0.18.4-beta.rc1 by jamaljsr in https://github.com/jamaljsr/polar/pull/1064
- Add support for litd v0.14.0-alpha.rc1 by jamaljsr in https://github.com/jamaljsr/polar/pull/1039
- add support for LND v0.18.3 by jamaljsr in https://github.com/jamaljsr/polar/pull/1023
- add support for Core Lightning v24.08.1 by jamaljsr in https://github.com/jamaljsr/polar/pull/1023
- add support for Bitcoin Core v28.0 by jamaljsr in https://github.com/jamaljsr/polar/pull/1023
- add support for Terminal v0.13.995 by jamaljsr in https://github.com/jamaljsr/polar/pull/1023
- add support for CLN v24.08 by kelvinator07 in https://github.com/jamaljsr/polar/pull/994
- add support for litd v0.13.993-experimental by jamaljsr in https://github.com/jamaljsr/polar/pull/980
- add support for tapd v0.4.1 and litd v0.13.991 by jamaljsr in https://github.com/jamaljsr/polar/pull/969

### Bug Fixes

- Fix broken bitcoin-cli bash completion link by Abdulkbk in https://github.com/jamaljsr/polar/pull/977
- Updated deprecated husky command by kelvinator07 in https://github.com/jamaljsr/polar/pull/1013
- Fixed error when trying to parse empty customChannelData (lnd) by kelvinator07 in https://github.com/jamaljsr/polar/pull/1013
- Updated returned payinvoice amount to sats (eclair) by kelvinator07 in https://github.com/jamaljsr/polar/pull/1013
- Removed obsolete version field from compose file by kelvinator07 in https://github.com/jamaljsr/polar/pull/1013

## [3.0.0](https://github.com/jamaljsr/polar/compare/v2.2.0...v3.0.0)

The big feature of this major release is added support for Lightning Terminal (`litd`) nodes with the ability to open Taproot Asset channels and send/receive assets across the Lightning Network. There are also a handful of new improvements developed by new contributors to the project.
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ With Polar you can:

Supported Network Node Versions:

- [LND](https://github.com/lightningnetwork/lnd) - v0.18.3, v0.17.5, v0.16.4, v0.15.5, v0.14.3, v0.13.1
- [LND](https://github.com/lightningnetwork/lnd) - v0.18.4, v0.18.3, v0.17.5, v0.16.4, v0.15.5, v0.14.3, v0.13.1
- [Core Lightning](https://github.com/ElementsProject/lightning) - v24.08, v24.05, v24.02.2, v23.11.2
- [Eclair](https://github.com/ACINQ/eclair/) - v0.10.0, v0.9.0, v0.8.0, v0.7.0, v0.6.2, v0.5.0
- [Bitcoin Core](https://github.com/bitcoin/bitcoin) - v28.0, v27.0, v26.0, v25.0, v24.0, v23.0, v22.0, v0.21.1
- [Taproot Assets](https://github.com/lightninglabs/taproot-assets) - v0.4.1, v0.3.3
- [Terminal](https://github.com/lightninglabs/lightning-terminal) - v0.13.995
- [Taproot Assets](https://github.com/lightninglabs/taproot-assets) - v0.5.0, v0.4.1, v0.3.3
- [Terminal](https://github.com/lightninglabs/lightning-terminal) - v0.14.0

## Dependencies

Expand All @@ -60,11 +60,11 @@ You will be prompted to install Docker if Polar cannot detect it automatically

## Download

Download Polar v3.0.0 for your OS
Download Polar v3.1.0 for your OS

- Mac ([dmg](https://github.com/jamaljsr/polar/releases/download/v3.0.0/polar-mac-x64-v3.0.0.dmg))
- Linux ([deb](https://github.com/jamaljsr/polar/releases/download/v3.0.0/polar-linux-amd64-v3.0.0.deb), [AppImage](https://github.com/jamaljsr/polar/releases/download/v3.0.0/polar-linux-x86_64-v3.0.0.AppImage)), [RPM](https://github.com/jamaljsr/polar/releases/download/v3.0.0/polar-linux-x86_64-v2.1.0.rpm))
- Windows ([exe](https://github.com/jamaljsr/polar/releases/download/v3.0.0/polar-win-x64-v3.0.0.exe))
- Mac ([dmg](https://github.com/jamaljsr/polar/releases/download/v3.1.0/polar-mac-x64-v3.1.0.dmg))
- Linux ([deb](https://github.com/jamaljsr/polar/releases/download/v3.1.0/polar-linux-amd64-v3.1.0.deb), [AppImage](https://github.com/jamaljsr/polar/releases/download/v3.1.0/polar-linux-x86_64-v3.1.0.AppImage)), [RPM](https://github.com/jamaljsr/polar/releases/download/v3.1.0/polar-linux-x86_64-v2.1.0.rpm))
- Windows ([exe](https://github.com/jamaljsr/polar/releases/download/v3.1.0/polar-win-x64-v3.1.0.exe))

Alternative and older version binaries can be found in the [GitHub releases](https://github.com/jamaljsr/polar/releases)

Expand Down
34 changes: 21 additions & 13 deletions docker/nodes.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
{
"version": 65,
"version": 66,
"images": {
"LND": {
"latest": "0.18.2-beta",
"latest": "0.18.4-beta.rc1",
"versions": [
"0.18.4-beta.rc1",
"0.18.3-beta",
"0.18.2-beta",
"0.18.1-beta",
"0.18.0-beta",
Expand All @@ -12,6 +14,8 @@
"0.15.5-beta"
],
"compatibility": {
"0.18.4-beta.rc1": "27.0",
"0.18.3-beta": "27.0",
"0.18.2-beta": "27.0",
"0.18.1-beta": "27.0",
"0.18.0-beta": "27.0",
Expand All @@ -21,39 +25,43 @@
}
},
"c-lightning": {
"latest": "24.08",
"versions": ["24.08", "24.05", "24.02.2", "23.11.2"]
"latest": "24.08.1",
"versions": ["24.08.1", "24.08", "24.05", "24.02.2", "23.11.2"]
},
"eclair": {
"latest": "0.10.0",
"versions": ["0.10.0", "0.9.0", "0.8.0", "0.7.0", "0.6.2", "0.5.0"]
},
"bitcoind": {
"latest": "27.0",
"versions": ["27.0", "26.0", "25.0", "24.0", "23.0", "22.0", "0.21.1"]
"versions": ["28.0", "27.0", "26.0", "25.0", "24.0", "23.0", "22.0", "0.21.1"]
},
"btcd": {
"latest": "",
"versions": []
},
"tapd": {
"latest": "0.4.1-alpha",
"versions": ["0.4.1-alpha", "0.4.0-alpha", "0.3.3-alpha", "0.3.2-alpha"],
"latest": "0.5.0-rc1",
"versions": [
"0.5.0-rc1",
"0.4.1-alpha",
"0.4.0-alpha",
"0.3.3-alpha",
"0.3.2-alpha"
],
"compatibility": {
"0.5.0-rc1": "0.18.4-beta.rc1",
"0.4.1-alpha": "0.18.0-beta",
"0.4.0-alpha": "0.18.0-beta",
"0.3.3-alpha": "0.16.0-beta",
"0.3.2-alpha": "0.16.0-beta"
}
},
"litd": {
"latest": "0.13.993-exp",
"versions": ["0.13.993-exp", "0.13.992-exp", "0.13.991-exp", "0.13.99-exp"],
"latest": "0.14.0-alpha.rc1",
"versions": ["0.14.0-alpha.rc1"],
"compatibility": {
"0.13.993-exp": "27.0",
"0.13.992-exp": "27.0",
"0.13.991-exp": "27.0",
"0.13.99-exp": "27.0"
"0.14.0-alpha.rc1": "27.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "polar",
"version": "3.0.0",
"version": "3.1.0",
"homepage": "https://lightningpolar.com",
"description": "One-click Bitcoin Lightning networks for local app development & testing",
"author": {
Expand Down

0 comments on commit 63aa9ab

Please sign in to comment.