-
Notifications
You must be signed in to change notification settings - Fork 232
/
CHANGELOG
126 lines (83 loc) · 1.98 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
3.0.0
-----
- Add support for python 3.6
- Drop support for python 2.7
2.2.0
-----
- Support for `solc==0.4.20`
- Support for `solc==0.4.21`
- Support for `solc==0.4.22`
- Support for `solc==0.4.23`
- Support for `solc==0.4.24`
2.1.0
-----
- Support for `solc==0.4.18`
- Support for `solc==0.4.19`
2.0.0
-----
- Remove gevent support
1.4.0
-----
- Support for `solc==0.4.17`
1.3.0
-----
- Support for `solc==0.4.14`
- Support for `solc==0.4.15`
- Support for `solc==0.4.16`
1.2.2
-----
- Bugfix for solc installation for certain platform.
1.2.1
-----
- Add support for `solc==0.4.13`
1.2.0
-----
- Add support for `solc==0.4.12`
- Experimental `solc` installation feature. Install solc using the `solc.install_solc` function or `python -m solc.install v0.4.12`
1.1.0
-----
- Add support for `solc==0.4.11`
- Add support for `--standard-json` command line argument via `compile_standard` function.
- Add support for `--allow-paths` command line argument via `allow_paths` kwarg.
1.0.1
-----
- Expands test suite to include solidity `0.4.7`, `0.4.8` and `0.4.9`
1.0.0
-----
- Remove contract data modification from library
0.9.1
-----
- Add `devdoc` and `userdoc` to compiler output object.
0.9.0
-----
- Change from `async` terminology to `compat`
- Change env variables to `TESTRPC_THREADING_BACKEND` and `THREADING_BACKEND`
0.8.0
-----
- Remove hard gevent dependency
0.7.0
-----
- Drop support for 0.3.6
- Add support for 0.4.6
- Add ability to specify import remappings
0.6.0
-----
- Support for solc 0.4.1 and 0.4.2
0.5.0
-----
- Add ability to set solc binary path with env variable `SOLC_BINARY`
0.4.0
-----
- Fix bug where wrapper didn't use the provided alternative solc binary path.
- Fix issue where compile result solc version wouldn't match actual compiler
version if custom compiler path was used.
- Use `gevent`
0.3.0
-----
- Graceful failure mode when no contracts are found in the compiler output.
0.2.0
-----
- Add `link_code` function.
0.1.0
-----
- Initial Release