Skip to content
This repository was archived by the owner on Apr 6, 2020. It is now read-only.

Commit b6a8975

Browse files
authored
Merge pull request #83 from ethereumjs/bump-version-1.3.4
bump version 1.3.3 -> 1.3.4
2 parents c444d18 + 71c7a65 commit b6a8975

File tree

3 files changed

+68
-2
lines changed

3 files changed

+68
-2
lines changed

CHANGELOG.md

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5+
(modification: no type change headlines) and this project adheres to
6+
[Semantic Versioning](http://semver.org/spec/v2.0.0.html).
7+
8+
9+
## [1.3.4] - 2018-03-06
10+
- Fix a bug producing hash collisions on ``FakeTransaction`` for different senders, PR [#81](https://github.com/ethereumjs/ethereumjs-tx/pull/81)
11+
- Switched from deprecated ``es2015`` to ``env`` babel preset, PR [#86](https://github.com/ethereumjs/ethereumjs-tx/pull/86)
12+
- Dropped Node 4 support
13+
14+
[1.3.4]: https://github.com/ethereumjs/ethereumjs-tx/compare/v1.3.3...v1.3.4
15+
16+
## [1.3.3] - 2017-07-12
17+
- Allow zeros in ``v``,``r``,``s`` signature values
18+
- Dropped ``browserify`` transform from ``package.json``
19+
- (combined v1.3.3 and v1.3.2 release notes)
20+
21+
[1.3.3]: https://github.com/ethereumjs/ethereumjs-tx/compare/v1.3.1...v1.3.3
22+
23+
## [1.3.1] - 2017-05-13
24+
- Added ``ES5`` build
25+
26+
[1.3.1]: https://github.com/ethereumjs/ethereumjs-tx/compare/v1.3.0...v1.3.1
27+
28+
## [1.3.0] - 2017-04-24
29+
30+
- ``EIP155``: allow ``v`` value to be greater than one byte (replay attack protection)
31+
- Added ``browserify`` ``ES2015`` transform to ``package.json``
32+
- Improved documentation
33+
- (combined v1.3.0, v1.2.5 and v1.2.4 release notes)
34+
35+
[1.3.0]: https://github.com/ethereumjs/ethereumjs-tx/compare/v1.2.3...v1.3.0
36+
37+
## [1.2.3] - 2017-01-30
38+
- ``EIP155`` hash implementation
39+
- README example and doc fixes
40+
41+
[1.2.3]: https://github.com/ethereumjs/ethereumjs-tx/compare/v1.2.2...v1.2.3
42+
43+
## [1.2.2] - 2016-12-15
44+
- Moved ``chainId`` param to ``txParams``, parse ``sig`` for ``chainId`` (``EIP155`` refactor)
45+
- Test improvements
46+
- (combined v1.2.2 and v1.2.1 release notes)
47+
48+
[1.2.2]: https://github.com/ethereumjs/ethereumjs-tx/compare/v1.2.0...v1.2.2
49+
50+
## [1.2.0] - 2016-12-14
51+
- Added ``EIP155`` changes
52+
- Renamed ``chain_id`` to ``chainId``
53+
- Node 4/5 compatibility
54+
- ``ES6`` standards
55+
56+
[1.2.0]: https://github.com/ethereumjs/ethereumjs-tx/compare/v1.1.4...v1.2.0
57+
58+
## Older releases:
59+
60+
- [1.1.4](https://github.com/ethereumjs/ethereumjs-tx/compare/v1.1.3...v1.1.4) - 2016-11-17
61+
- [1.1.3](https://github.com/ethereumjs/ethereumjs-tx/compare/v1.1.2...v1.1.3) - 2016-11-10
62+
- [1.1.2](https://github.com/ethereumjs/ethereumjs-tx/compare/v1.1.1...v1.1.2) - 2016-07-17
63+
- [1.1.1](https://github.com/ethereumjs/ethereumjs-tx/compare/v1.1.0...v1.1.1) - 2016-03-05
64+
- [1.1.0](https://github.com/ethereumjs/ethereumjs-tx/compare/v1.0.1...v1.1.0) - 2016-03-03
65+
- [1.0.1](https://github.com/ethereumjs/ethereumjs-tx/compare/v1.0.0...v1.0.1) - 2016-03-03
66+
- [1.0.0](https://github.com/ethereumjs/ethereumjs-tx/compare/v0.7.3...v1.0.0) - 2016-02-11

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SYNOPSIS
22
[![NPM Package](https://img.shields.io/npm/v/ethereumjs-tx.svg?style=flat-square)](https://www.npmjs.org/package/ethereumjs-tx)
3-
[![Build Status](https://img.shields.io/travis/ethereumjs/ethereumjs-tx.svg?branch=master&style=flat-square)](https://travis-ci.org/ethereumjs/ethereumjs-tx)
3+
[![Build Status](https://travis-ci.org/ethereumjs/ethereumjs-tx.svg?branch=master)](https://travis-ci.org/ethereumjs/ethereumjs-tx)
44
[![Coverage Status](https://img.shields.io/coveralls/ethereumjs/ethereumjs-tx.svg?style=flat-square)](https://coveralls.io/r/ethereumjs/ethereumjs-tx)
55
[![Gitter](https://img.shields.io/gitter/room/ethereum/ethereumjs-lib.svg?style=flat-square)](https://gitter.im/ethereum/ethereumjs-lib) or #ethereumjs on freenode
66

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ethereumjs-tx",
3-
"version": "1.3.3",
3+
"version": "1.3.4",
44
"description": "An simple module for creating, manipulating and signing ethereum transactions",
55
"main": "es5/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)