Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

Commit

Permalink
new release: v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhilsaraf committed Oct 22, 2018
1 parent 0ccbc49 commit 02790ad
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 11 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

### Security

## [v1.1.1] - 2018-10-22

### Fixed
- fixed bot panicing when it cannot cast ticker bid/ask values to a float64 from CCXT's FetchTicker endpoint (0ccbc495e18b1e3b207dad5d3421c7556c63c004) ([issue #31](https://github.com/lightyeario/kelp/issues/31))

## [v1.1.0] - 2018-10-19

### Added
Expand Down Expand Up @@ -59,7 +64,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Configuration file based approach to setting up a bot
- Documentation on existing capabilities

[Unreleased]: https://github.com/lightyeario/kelp/compare/v1.1.0...HEAD
[Unreleased]: https://github.com/lightyeario/kelp/compare/v1.1.1...HEAD
[v1.1.1]: https://github.com/lightyeario/kelp/compare/v1.1.0...v1.1.1
[v1.1.0]: https://github.com/lightyeario/kelp/compare/v1.0.0...v1.1.0
[v1.0.0]: https://github.com/lightyeario/kelp/compare/v1.0.0-rc3...v1.0.0
[v1.0.0-rc3]: https://github.com/lightyeario/kelp/compare/v1.0.0-rc2...v1.0.0-rc3
Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,24 +57,24 @@ There is **one** binary associated with this project: `kelp`. Once the binary is

You can find the pre-compiled binary for your platform from the [Github Releases Page][github-releases].

Here is a list of binaries for the most recent release **v1.1.0**:
Here is a list of binaries for the most recent release **v1.1.1**:

| Platform | Architecture | Binary File Name |
| -------------- | ------------ | ---------------- |
| MacOS (Darwin) | 64-bit | [kelp-v1.1.0-darwin-amd64.tar](https://github.com/lightyeario/kelp/releases/download/v1.1.0/kelp-v1.1.0-darwin-amd64.tar) |
| Windows | 64-bit | [kelp-v1.1.0-windows-amd64.tar](https://github.com/lightyeario/kelp/releases/download/v1.1.0/kelp-v1.1.0-windows-amd64.tar) |
| Linux | 64-bit | [kelp-v1.1.0-linux-amd64.tar](https://github.com/lightyeario/kelp/releases/download/v1.1.0/kelp-v1.1.0-linux-amd64.tar) |
| Linux | 64-bit arm | [kelp-v1.1.0-linux-arm64.tar](https://github.com/lightyeario/kelp/releases/download/v1.1.0/kelp-v1.1.0-linux-arm64.tar) |
| Linux | 32-bit arm5 | [kelp-v1.1.0-linux-arm5.tar](https://github.com/lightyeario/kelp/releases/download/v1.1.0/kelp-v1.1.0-linux-arm5.tar) |
| Linux | 32-bit arm6 | [kelp-v1.1.0-linux-arm6.tar](https://github.com/lightyeario/kelp/releases/download/v1.1.0/kelp-v1.1.0-linux-arm6.tar) |
| Linux | 32-bit arm7 | [kelp-v1.1.0-linux-arm7.tar](https://github.com/lightyeario/kelp/releases/download/v1.1.0/kelp-v1.1.0-linux-arm7.tar) |
| MacOS (Darwin) | 64-bit | [kelp-v1.1.1-darwin-amd64.tar](https://github.com/lightyeario/kelp/releases/download/v1.1.1/kelp-v1.1.1-darwin-amd64.tar) |
| Windows | 64-bit | [kelp-v1.1.1-windows-amd64.tar](https://github.com/lightyeario/kelp/releases/download/v1.1.1/kelp-v1.1.1-windows-amd64.tar) |
| Linux | 64-bit | [kelp-v1.1.1-linux-amd64.tar](https://github.com/lightyeario/kelp/releases/download/v1.1.1/kelp-v1.1.1-linux-amd64.tar) |
| Linux | 64-bit arm | [kelp-v1.1.1-linux-arm64.tar](https://github.com/lightyeario/kelp/releases/download/v1.1.1/kelp-v1.1.1-linux-arm64.tar) |
| Linux | 32-bit arm5 | [kelp-v1.1.1-linux-arm5.tar](https://github.com/lightyeario/kelp/releases/download/v1.1.1/kelp-v1.1.1-linux-arm5.tar) |
| Linux | 32-bit arm6 | [kelp-v1.1.1-linux-arm6.tar](https://github.com/lightyeario/kelp/releases/download/v1.1.1/kelp-v1.1.1-linux-arm6.tar) |
| Linux | 32-bit arm7 | [kelp-v1.1.1-linux-arm7.tar](https://github.com/lightyeario/kelp/releases/download/v1.1.1/kelp-v1.1.1-linux-arm7.tar) |

After you _untar_ the downloaded file, change to the generated directory (`kelp-v1.1.0`) and invoke the `kelp` binary.
After you _untar_ the downloaded file, change to the generated directory (`kelp-v1.1.1`) and invoke the `kelp` binary.

Here's an example to get you started (replace `filename` with the name of the file that you download):

tar xvf filename
cd kelp-v1.1.0
cd kelp-v1.1.1
./kelp

To run the bot in simulation mode, try this command:
Expand Down

0 comments on commit 02790ad

Please sign in to comment.