Skip to content

Commit b22592b

Browse files
author
tobias
committed
added new version
1 parent d0a9efa commit b22592b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

solc/install.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
V0_4_22 = 'v0.4.22'
3232
V0_4_23 = 'v0.4.23'
3333
V0_4_24 = 'v0.4.24'
34+
V0_4_25 = 'v0.4.25'
3435

3536

3637
LINUX = 'linux'
@@ -412,6 +413,7 @@ def install_from_static_linux(identifier):
412413
install_v0_4_22_linux = functools.partial(install_solc_from_static_linux, V0_4_22)
413414
install_v0_4_23_linux = functools.partial(install_solc_from_static_linux, V0_4_23)
414415
install_v0_4_24_linux = functools.partial(install_solc_from_static_linux, V0_4_24)
416+
install_v0_4_25_linux = functools.partial(install_solc_from_static_linux, V0_4_25)
415417

416418

417419
def install_from_source(identifier):
@@ -439,6 +441,7 @@ def install_from_source(identifier):
439441
install_v0_4_22_osx = functools.partial(install_from_source, V0_4_22)
440442
install_v0_4_23_osx = functools.partial(install_from_source, V0_4_23)
441443
install_v0_4_24_osx = functools.partial(install_from_source, V0_4_24)
444+
install_v0_4_25_osx = functools.partial(install_from_source, V0_4_25)
442445

443446

444447
INSTALL_FUNCTIONS = {
@@ -463,6 +466,7 @@ def install_from_source(identifier):
463466
V0_4_22: install_v0_4_22_linux,
464467
V0_4_23: install_v0_4_23_linux,
465468
V0_4_24: install_v0_4_24_linux,
469+
V0_4_25: install_v0_4_25_linux,
466470
},
467471
OSX: {
468472
V0_4_8: install_v0_4_8_osx,
@@ -480,6 +484,7 @@ def install_from_source(identifier):
480484
V0_4_22: install_v0_4_22_osx,
481485
V0_4_23: install_v0_4_23_osx,
482486
V0_4_24: install_v0_4_24_osx,
487+
V0_4_25: install_v0_4_25_osx,
483488
}
484489
}
485490

0 commit comments

Comments
 (0)