Skip to content

Commit 9b5f9f9

Browse files
authored
Merge pull request #2146 from skycoin/develop
Merge v0.25.1
2 parents dbf18a0 + 7042c09 commit 9b5f9f9

File tree

758 files changed

+63392
-23423
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

758 files changed

+63392
-23423
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,8 @@ docs/libc/xml
152152

153153
*.prof
154154
*.profile
155+
*.cpuprofile
156+
*.memprofile
155157

156158
# cli fiberAddressGen default output
157159
addresses.txt

.travis.yml

-10
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ matrix:
1616

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

2120
env:
2221
global:
@@ -50,8 +49,6 @@ install:
5049
- make install-linters
5150
# Install pinned golangci-lint, overriding the latest version install by make install-linters
5251
- VERSION=1.10.2 ./ci-scripts/install-golangci-lint.sh
53-
- ./ci-scripts/install-travis-gcc.sh
54-
- make install-deps-libc
5552
- nvm install 8.11.0
5653
- nvm use 8.11.0
5754
- make install-deps-ui
@@ -81,13 +78,6 @@ script:
8178
- make integration-test-auth
8279
# Stable integration tests without unconfirmed transactions
8380
- make integration-test-db-no-unconfirmed
84-
# libskycoin tests
85-
- CC=gcc-6 make test-libc
86-
# TODO: test pyskycoin
87-
# - CC=gcc-6 make test-libpy
88-
# TODO: test ui
89-
# - make test-ui
90-
# - make test-libpy
9181
- make lint-ui
9282
- make build-ui-travis
9383
- make test-ui

CHANGELOG.md

+26
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,31 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1414

1515
### Removed
1616

17+
## [0.25.1] - 2019-02-08
18+
19+
### Added
20+
21+
- Add CLI `addressTransactions` command
22+
- Add `/api/v2/wallet/seed/verify` to verify if seed is a valid bip39 mnemonic seed
23+
- Filter transactions in the History view in the UI
24+
25+
### Fixed
26+
27+
- `/api/v1/health` will return correct build info when running Docker containers based on `skycoin/skycoin` mainnet image.
28+
- #2083, Windows desktop wallet sometimes shows "Error#1" on start
29+
30+
### Changed
31+
32+
- Extend URI specification to allow plain addresses (i.e. without a `skycoin:` prefix)
33+
- Switch `skycoin-cli` from `urfave/cli` to `spf13/cobra`.
34+
Now all options of a cli command must only use `--` prefix instead of a mix of `--` and `-` prefixes.
35+
`-` prefix is only allowed when using shorthand notation.
36+
- Use an optimized `base58` library for faster address decoding and encoding.
37+
38+
### Removed
39+
40+
- Remove libskycoin source code. Migrated to https://github.com/skycoin/libskycoin
41+
1742
## [0.25.0] - 2018-12-19
1843

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

438463
[Unreleased]: https://github.com/skycoin/skycoin/compare/master...develop
464+
[0.25.1]: https://github.com/skycoin/skycoin/compare/v0.25.0...v0.25.1
439465
[0.25.0]: https://github.com/skycoin/skycoin/compare/v0.24.1...v0.25.0
440466
[0.24.1]: https://github.com/skycoin/skycoin/compare/v0.24.0...v0.24.1
441467
[0.24.0]: https://github.com/skycoin/skycoin/compare/v0.23.0...v0.24.0

0 commit comments

Comments
 (0)