Skip to content

Commit

Permalink
chore(release): bump version to v3.0.0-rc1 and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jamaljsr committed Jul 15, 2024
1 parent 1fc7466 commit c0c61a2
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 21 deletions.
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,38 @@

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.0.0-rc1](https://github.com/jamaljsr/polar/compare/v2.2.0...v3.0.0-rc1)

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.

### Features

- Shutdown Docker Containers when Closing Polar GUI by @Abdulkbk in https://github.com/jamaljsr/polar/pull/844
- Real-time updates of channel status changes by @kelvinator07 in https://github.com/jamaljsr/polar/pull/837
- Remember node counts when creating new networks by @jamaljsr in https://github.com/jamaljsr/polar/pull/895
- Add custom base port for nodes by @Abdulkbk in https://github.com/jamaljsr/polar/pull/878
- Added app tray. users can minimize, maximize and quit polar from system tray by @AdamuAbba in https://github.com/jamaljsr/polar/pull/842
- Add ability to rename nodes by @Jem256 in https://github.com/jamaljsr/polar/pull/841

### Node Updates

- Add support for LND v0.17.5 and Bitcoin Core v27.0 by @jamaljsr in https://github.com/jamaljsr/polar/pull/880
- Add support for LND v0.18.0-beta final by @jamaljsr in https://github.com/jamaljsr/polar/pull/912
- Add support for LND v0.18.2-beta by @jamaljsr in https://github.com/jamaljsr/polar/pull/912
- Add support for Core Lightning v23.08.2, v24.02.2 & v24.05 by @jamaljsr in https://github.com/jamaljsr/polar/pull/879
- Add support for Terminal (litd) by @jamaljsr in https://github.com/jamaljsr/polar/pull/902
- Add support for Taproot Assets v0.4.0 by @jamaljsr in https://github.com/jamaljsr/polar/pull/936

### Bug Fixes

- Added default value for isPrivate checkbox by @kelvinator07 in https://github.com/jamaljsr/polar/pull/852
- Fix error when closing Core Lightning channels by @kelvinator07 in https://github.com/jamaljsr/polar/pull/934

### Docs / Translations

- Fix japanese by @Hakkadaikon in https://github.com/jamaljsr/polar/pull/849
- Fix some comments by @soonsouth in https://github.com/jamaljsr/polar/pull/858

## [2.2.0](https://github.com/jamaljsr/polar/compare/v2.1.0...v2.2.0)

This minor release adds support for the latest LND, Eclair, and tapd nodes. It includes
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ With Polar you can:
- Manually mine new blocks
- Deposit regtest coins into each Lightning node
- Mint, Send & Receive Taproot Assets
- Create & Pay Taproot Asset invoices
- Export and import networks, for sharing with other Lightning developers
- Create you own docker images to use as [custom nodes](https://github.com/jamaljsr/polar/blob/master/docs/custom-nodes.md) (ex: master branch, local fork)

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": "2.2.0",
"version": "3.0.0-rc1",
"homepage": "https://lightningpolar.com",
"description": "One-click Bitcoin Lightning networks for local app development & testing",
"author": {
Expand Down
20 changes: 0 additions & 20 deletions src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -340,18 +340,8 @@ export const defaultRepoState: DockerRepoState = {
'0.18.1-beta',
'0.18.0-beta',
'0.17.5-beta',
'0.17.4-beta',
'0.17.3-beta',
'0.17.2-beta',
'0.17.1-beta',
'0.17.0-beta',
'0.16.4-beta',
'0.16.2-beta',
'0.16.1-beta',
'0.16.0-beta',
'0.15.5-beta',
'0.14.3-beta',
'0.13.1-beta',
],
// not all LND versions are compatible with all bitcoind versions.
// this mapping specifies the highest compatible bitcoind for each LND version
Expand All @@ -360,18 +350,8 @@ export const defaultRepoState: DockerRepoState = {
'0.18.1-beta': '27.0',
'0.18.0-beta': '27.0',
'0.17.5-beta': '27.0',
'0.17.4-beta': '27.0',
'0.17.3-beta': '27.0',
'0.17.2-beta': '27.0',
'0.17.1-beta': '27.0',
'0.17.0-beta': '27.0',
'0.16.4-beta': '27.0',
'0.16.2-beta': '27.0',
'0.16.1-beta': '27.0',
'0.16.0-beta': '27.0',
'0.15.5-beta': '27.0',
'0.14.3-beta': '27.0',
'0.13.1-beta': '27.0',
},
},
'c-lightning': {
Expand Down

0 comments on commit c0c61a2

Please sign in to comment.