Browse Source

chore(release): bump version to v1.0.1 and update changelog

master v1.0.1
jamaljsr 4 years ago
committed by Jamal James
parent
commit
1df2e21f5f
  1. 19
      CHANGELOG.md
  2. 8
      README.md
  3. 4
      package.json

19
CHANGELOG.md

@ -2,6 +2,25 @@
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. 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.
## [v1.0.1](https://github.com/jamaljsr/polar/compare/v1.0.0...v1.0.1)
This is a small patch release which fixes a compatibility issue to support Bitcoin Core v0.20.0. There was a breaking change in this version requiring the use of `-fallbackfee` in regtest environments.
### Features
- **images:** add support for bitcoind v0.20.0 ([a538ca0](https://github.com/jamaljsr/polar/commit/a538ca04ddcb523ac1bd1e3998e553a4c2bfd6ec))
- **images:** add support for LND v0.10.2-beta.rc2 ([be3a135](https://github.com/jamaljsr/polar/commit/be3a135efd0efbcf2928e1906440f53621ab05c3))
- **images:** add support for LND v0.10.1-beta ([20e1ed1](https://github.com/jamaljsr/polar/commit/20e1ed1e1d6f70b049a37022ded64f38cfe061e4))
- **images:** add support for LND v0.10.0 and c-lightning v0.8.2 ([6df87c8](https://github.com/jamaljsr/polar/commit/6df87c8d6458f62fb657391fce01877b80580b10))
### Bug Fixes
- **lnd:** add docker container name as tlsextradomain ([#355](https://github.com/jamaljsr/polar/issues/355))
### Docs
- fix small typos in CONTRIBUTING ([#331](https://github.com/jamaljsr/polar/issues/331) & [#332](https://github.com/jamaljsr/polar/issues/332)) by [@nickycutesc](https://github.com/nickycutesc)
## [v1.0.0](https://github.com/jamaljsr/polar/compare/v0.2.1...v1.0.0) ## [v1.0.0](https://github.com/jamaljsr/polar/compare/v0.2.1...v1.0.0)
This release was focused on implementing many of the feature requests submitted since the first release, as well as adding support for the Eclair Lightning implementation. You can now use your own custom Docker image, allowing you to run the master branch or your personal fork of each node. Polar now supports importing and exporting networks, which allows you to save snapshots to reuse as a starting point over an over again. We also added a log viewer for nodes which should make it easier to see what your nodes are doing and added right-click menus for nodes & channels so you can perform actions with less clicks. To support more flexible environments, the Lightning P2P and Bitcoin ZMQ ports are now exposed to the host machine, which means you can have nodes outside of Polar communicate with the nodes inside. This release was focused on implementing many of the feature requests submitted since the first release, as well as adding support for the Eclair Lightning implementation. You can now use your own custom Docker image, allowing you to run the master branch or your personal fork of each node. Polar now supports importing and exporting networks, which allows you to save snapshots to reuse as a starting point over an over again. We also added a log viewer for nodes which should make it easier to see what your nodes are doing and added right-click menus for nodes & channels so you can perform actions with less clicks. To support more flexible environments, the Lightning P2P and Bitcoin ZMQ ports are now exposed to the host machine, which means you can have nodes outside of Polar communicate with the nodes inside.

8
README.md

@ -52,11 +52,11 @@ You will be prompted to install Docker if Polar cannot detect it automatically
## Download ## Download
Download Polar v1.0.0 for your OS Download Polar v1.0.1 for your OS
- Mac ([dmg](https://github.com/jamaljsr/polar/releases/download/v1.0.0/polar-mac-v1.0.0.dmg), [zip](https://github.com/jamaljsr/polar/releases/download/v1.0.0/polar-mac-v1.0.0.zip)) - Mac ([dmg](https://github.com/jamaljsr/polar/releases/download/v1.0.1/polar-mac-v1.0.1.dmg), [zip](https://github.com/jamaljsr/polar/releases/download/v1.0.1/polar-mac-v1.0.1.zip))
- Linux ([deb](https://github.com/jamaljsr/polar/releases/download/v1.0.0/polar-linux-amd64-v1.0.0.deb), [AppImage](https://github.com/jamaljsr/polar/releases/download/v1.0.0/polar-linux-x86_64-v1.0.0.AppImage)) - Linux ([deb](https://github.com/jamaljsr/polar/releases/download/v1.0.1/polar-linux-amd64-v1.0.1.deb), [AppImage](https://github.com/jamaljsr/polar/releases/download/v1.0.1/polar-linux-x86_64-v1.0.1.AppImage))
- Windows ([exe](https://github.com/jamaljsr/polar/releases/download/v1.0.0/polar-win-v1.0.0.exe)) - Windows ([exe](https://github.com/jamaljsr/polar/releases/download/v1.0.1/polar-win-v1.0.1.exe))
Alternative and older version binaries can be found in the [GitHub releases](https://github.com/jamaljsr/polar/releases) Alternative and older version binaries can be found in the [GitHub releases](https://github.com/jamaljsr/polar/releases)

4
package.json

@ -1,6 +1,6 @@
{ {
"name": "polar", "name": "polar",
"version": "1.0.0", "version": "1.0.1",
"homepage": "https://lightningpolar.com", "homepage": "https://lightningpolar.com",
"description": "One-click Bitcoin Lightning networks for local app development & testing", "description": "One-click Bitcoin Lightning networks for local app development & testing",
"author": { "author": {
@ -10,7 +10,7 @@
}, },
"main": "public/main/electron/index.js", "main": "public/main/electron/index.js",
"scripts": { "scripts": {
"build": "cross-env PUBLIC_URL=./ rescripts build", "build": "cross-env CI=false PUBLIC_URL=./ rescripts build",
"cm": "git add . && git cz", "cm": "git add . && git cz",
"dev": "concurrently --kill-others --success first \"yarn:dev:*\"", "dev": "concurrently --kill-others --success first \"yarn:dev:*\"",
"dev:app": "yarn theme && cross-env BROWSER=none yarn start", "dev:app": "yarn theme && cross-env BROWSER=none yarn start",

Loading…
Cancel
Save