forked from ApeWorX/py-solc-x
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
217 lines (146 loc) · 4.23 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
0.7.1
-----
- Bugfix: compiling with limited output values
0.7.0
-----
- Store solc binaries at $HOME/.solcx
- Add locks for thread and multiprocessing safety
- Show progress bar during installation if `tqdm` is installed
0.6.1
-----
- Fix compatibility issues with Solidity 0.6.0
- When installing on OSX, log a warning instead of raising if dependency installation fails
- Ensure old versions are still visible in solcx.get_available_solc_versions
0.6.0
-----
- Use logger instead of print statements
- Update dependencies, fix deprecation warnings
- Use requests package for downloads on all platforms
0.5.0
-----
- Support for github API tokens via environment var GITHUB_TOKEN
- Improved verbosity when get_available_solc_versions raises
- Remove interace flag (was removed from solc in 0.4.0)
- Raise on clone-bin and formal flags when using 0.5.x
0.4.2
-----
- Fix link_code to support 0.5.x
- Remove trailing whitespace on solcx.get_version_string - fixes windows 0.5.x bug
0.4.1
-----
- Bugfix: absolute paths on windows systems
- Allow silencing of console output when changing solc version
0.4.0
-----
- Install new versions into solcx/temp - prevents issues with aborted installs
- set_solc_version raises instead of installing when requested version is not installed
- Do not allow version=None on installer methods
0.3.0
-----
- Install and set solc version based on pragma
- Get available solc versions, only install version if available for user's OS
0.2.1
-----
- Bugfix when no installed version of solc is found
- Confirm that imported versions of solc are still working
0.2.0
-----
- Fix "No input files given" bug in `solcx.compile_source()` on v0.5.x
- `install.py` - replace `os.path` with `pathlib.Path`
- Linux - copy from `which solc` path to save time installing solc
- OSX - copy solc versions from `usr/local/Cellar`, raise when attempting v0.4.x install
0.1.1
-----
- Better verbosity when building from source fails
0.1.0
-----
- Initial forked release
- Support for `solc 0.5.x`
- Drop support for `solc < 0.4.11`
- Add Windows installer
- Change install location to ./solcx/bin - no longer uses standard installed verion
- Change active solc version with `solcx.set_solc_version`
Original py-solc changelog:
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