Skip to content

Commit

Permalink
Merge pull request #2146 from skycoin/develop
Browse files Browse the repository at this point in the history
Merge v0.25.1
  • Loading branch information
gz-c committed Feb 9, 2019
2 parents dbf18a0 + 7042c09 commit 9b5f9f9
Show file tree
Hide file tree
Showing 758 changed files with 63,392 additions and 23,423 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,8 @@ docs/libc/xml

*.prof
*.profile
*.cpuprofile
*.memprofile

# cli fiberAddressGen default output
addresses.txt
Expand Down
10 changes: 0 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ matrix:

before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test && sudo apt-get update -qq; fi
- eval "CC=gcc-6 && CXX=g++-6"

env:
global:
Expand Down Expand Up @@ -50,8 +49,6 @@ install:
- make install-linters
# Install pinned golangci-lint, overriding the latest version install by make install-linters
- VERSION=1.10.2 ./ci-scripts/install-golangci-lint.sh
- ./ci-scripts/install-travis-gcc.sh
- make install-deps-libc
- nvm install 8.11.0
- nvm use 8.11.0
- make install-deps-ui
Expand Down Expand Up @@ -81,13 +78,6 @@ script:
- make integration-test-auth
# Stable integration tests without unconfirmed transactions
- make integration-test-db-no-unconfirmed
# libskycoin tests
- CC=gcc-6 make test-libc
# TODO: test pyskycoin
# - CC=gcc-6 make test-libpy
# TODO: test ui
# - make test-ui
# - make test-libpy
- make lint-ui
- make build-ui-travis
- make test-ui
Expand Down
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,31 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

### Removed

## [0.25.1] - 2019-02-08

### Added

- Add CLI `addressTransactions` command
- Add `/api/v2/wallet/seed/verify` to verify if seed is a valid bip39 mnemonic seed
- Filter transactions in the History view in the UI

### Fixed

- `/api/v1/health` will return correct build info when running Docker containers based on `skycoin/skycoin` mainnet image.
- #2083, Windows desktop wallet sometimes shows "Error#1" on start

### Changed

- Extend URI specification to allow plain addresses (i.e. without a `skycoin:` prefix)
- Switch `skycoin-cli` from `urfave/cli` to `spf13/cobra`.
Now all options of a cli command must only use `--` prefix instead of a mix of `--` and `-` prefixes.
`-` prefix is only allowed when using shorthand notation.
- Use an optimized `base58` library for faster address decoding and encoding.

### Removed

- Remove libskycoin source code. Migrated to https://github.com/skycoin/libskycoin

## [0.25.0] - 2018-12-19

### Upcoming deprecated method removal notice
Expand Down Expand Up @@ -436,6 +461,7 @@ Make sure to upgrade to v0.25.0 so that your node will continue to connect once
- #350 Wallet name always 'undefined' after loading wallet from seed

[Unreleased]: https://github.com/skycoin/skycoin/compare/master...develop
[0.25.1]: https://github.com/skycoin/skycoin/compare/v0.25.0...v0.25.1
[0.25.0]: https://github.com/skycoin/skycoin/compare/v0.24.1...v0.25.0
[0.24.1]: https://github.com/skycoin/skycoin/compare/v0.24.0...v0.24.1
[0.24.0]: https://github.com/skycoin/skycoin/compare/v0.23.0...v0.24.0
Expand Down

0 comments on commit 9b5f9f9

Please sign in to comment.