Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release - 2.0.0-alpha #2906

Merged
merged 15 commits into from
Jul 13, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 29 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,34 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

-->

## [2.0.0-alpha]

### Added

- Sending of locally signed transactions as ``BatchRequest`` (#2708)
- Automatic increason of the nonce for locally signed transactions (#2796)

### Changed

- Pull request & issue templates updated
- Supported node versions changed (#2820)

### Fixed

- ``hexToNumberString`` prefix validation (#2184)
- Draft implementation of the EIP-1193 improved (#2856, #2862, #2854)
- Documentation typo (#2806)
- Contract method parameter handling fixed (#2815)
- ``isBigNumber`` export fixed (#2835)
- ``SyncingSubscription`` fixed (#2833)
- ``getBlock`` types fixed (#2819)
- Transaction confirmation workflow fixed for parity (#2847)
- ``WebsocketProvider`` event handling fixed (#2711)
- ``WebsocketProvider`` memory leak fixed (#2851)

## [Unreleased]

## [2.0.0-alpha]
## [2.0.0-alpha.1]



2 changes: 1 addition & 1 deletion docs/include_announcement.rst
Original file line number Diff line number Diff line change
@@ -1 +1 @@
.. note:: This documentation is under construction and the web3.js 1.0 stable version isn't released. If you're using a version v0.x.x of web3.js then please have a look at `github.com/ethereum/wiki/wiki/JavaScript-API <https://github.com/ethereum/wiki/wiki/JavaScript-API>`_.
.. note:: This documentation is under construction and documents the 2.x alpha versions of web3.js. The current stable version of web3.js is 1.0 and should get preferred for production use cases.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0-beta.55",
"version": "2.0.0-alpha",
"lerna": "2.0.0",
"command": {
"init": {
Expand Down
16 changes: 12 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
{
"name": "web3",
"namespace": "ethereum",
"version": "1.0.0-beta.55",
"version": "2.0.0-alpha",
"description": "Ethereum JavaScript API wrapper repository",
"license": "LGPL-3.0",
"engines": {
"node": ">=8.0.0"
},
"main": "./packages/web3/src/index.js",
"directories": {
"doc": "./doc"
Expand All @@ -15,7 +18,7 @@
"install:all": "lerna add",
"remove:all": "lerna exec npm uninstall",
"install:dev:all": "lerna exec npm install --save-dev",
"publish": "npm run bootstrap && npm run travis && lerna publish --skip-git",
"publish": "npm run bootstrap && npm run travis && lerna publish --dist-tag next --skip-git",
"build": "lerna run build",
"test": "lerna run test",
"test:coverage": "lerna run test -- --coverage && npm run istanbulCombine",
Expand Down Expand Up @@ -81,7 +84,7 @@
"@babel/preset-env": "^7.4.4",
"@babel/runtime": "^7.4.2",
"@types/bn.js": "^4.11.5",
"@types/node": "^11.13.0",
"@types/node": "^12.6.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.1",
Expand Down
Loading