Skip to content

Commit

Permalink
chore(release): bump version to v1.0.1 and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jamaljsr committed Jun 26, 2020
1 parent 3e8bd51 commit 1df2e21
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 6 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

## [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)

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.
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ You will be prompted to install Docker if Polar cannot detect it automatically

## 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))
- 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))
- Windows ([exe](https://github.com/jamaljsr/polar/releases/download/v1.0.0/polar-win-v1.0.0.exe))
- 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.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.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)

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

0 comments on commit 1df2e21

Please sign in to comment.