Skip to content

Commit f20d64f

Browse files
committed
Bump versions in dexec to make use of correctly versioned images
1 parent 486771d commit f20d64f

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

dexec.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -53,28 +53,28 @@ func LookupImageByOverride(image string, extension string) DexecImage {
5353
// extensions to the names and versions of Docker Exec images.
5454
var LookupImageByExtension = func() func(string) DexecImage {
5555
innerMap := map[string]DexecImage{
56-
"c": {"c", "dexec/c", "1.0.0"},
56+
"c": {"c", "dexec/c", "1.0.1"},
5757
"clj": {"clj", "dexec/clojure", "1.0.0"},
58-
"coffee": {"coffee", "dexec/coffee", "1.0.0"},
59-
"cpp": {"cpp", "dexec/cpp", "1.0.0"},
60-
"cs": {"cs", "dexec/csharp", "1.0.0"},
58+
"coffee": {"coffee", "dexec/coffee", "1.0.1"},
59+
"cpp": {"cpp", "dexec/cpp", "1.0.1"},
60+
"cs": {"cs", "dexec/csharp", "1.0.1"},
6161
"d": {"d", "dexec/d", "1.0.0"},
6262
"erl": {"erl", "dexec/erlang", "1.0.0"},
63-
"fs": {"fs", "dexec/fsharp", "1.0.0"},
63+
"fs": {"fs", "dexec/fsharp", "1.0.1"},
6464
"go": {"go", "dexec/go", "1.0.0"},
6565
"groovy": {"groovy", "dexec/groovy", "1.0.0"},
6666
"hs": {"hs", "dexec/haskell", "1.0.0"},
67-
"java": {"java", "dexec/java", "1.0.0"},
67+
"java": {"java", "dexec/java", "1.0.1"},
6868
"lisp": {"lisp", "dexec/lisp", "1.0.0"},
6969
"lua": {"lua", "dexec/lua", "1.0.0"},
70-
"js": {"js", "dexec/node", "1.0.0"},
70+
"js": {"js", "dexec/node", "1.0.1"},
7171
"nim": {"nim", "dexec/nim", "1.0.0"},
7272
"m": {"m", "dexec/objc", "1.0.0"},
7373
"ml": {"ml", "dexec/ocaml", "1.0.0"},
7474
"p6": {"p6", "dexec/perl6", "1.0.0"},
7575
"pl": {"pl", "dexec/perl", "1.0.1"},
7676
"php": {"php", "dexec/php", "1.0.0"},
77-
"py": {"py", "dexec/python", "1.0.0"},
77+
"py": {"py", "dexec/python", "1.0.1"},
7878
"r": {"r", "dexec/r", "1.0.0"},
7979
"rkt": {"rkt", "dexec/racket", "1.0.0"},
8080
"rb": {"rb", "dexec/ruby", "1.0.0"},

dexec_test.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -49,28 +49,28 @@ func TestLookupImageByExtension(t *testing.T) {
4949
wantImage string
5050
wantVersion string
5151
}{
52-
{"c", "c", "c", "1.0.0"},
52+
{"c", "c", "c", "1.0.1"},
5353
{"clj", "clj", "clojure", "1.0.0"},
54-
{"coffee", "coffee", "coffee", "1.0.0"},
55-
{"cpp", "cpp", "cpp", "1.0.0"},
56-
{"cs", "cs", "csharp", "1.0.0"},
54+
{"coffee", "coffee", "coffee", "1.0.1"},
55+
{"cpp", "cpp", "cpp", "1.0.1"},
56+
{"cs", "cs", "csharp", "1.0.1"},
5757
{"d", "d", "d", "1.0.0"},
5858
{"erl", "erl", "erlang", "1.0.0"},
59-
{"fs", "fs", "fsharp", "1.0.0"},
59+
{"fs", "fs", "fsharp", "1.0.1"},
6060
{"go", "go", "go", "1.0.0"},
6161
{"groovy", "groovy", "groovy", "1.0.0"},
6262
{"hs", "hs", "haskell", "1.0.0"},
63-
{"java", "java", "java", "1.0.0"},
63+
{"java", "java", "java", "1.0.1"},
6464
{"lisp", "lisp", "lisp", "1.0.0"},
6565
{"lua", "lua", "lua", "1.0.0"},
66-
{"js", "js", "node", "1.0.0"},
66+
{"js", "js", "node", "1.0.1"},
6767
{"m", "m", "objc", "1.0.0"},
6868
{"ml", "ml", "ocaml", "1.0.0"},
6969
{"nim", "nim", "nim", "1.0.0"},
7070
{"p6", "p6", "perl6", "1.0.0"},
7171
{"pl", "pl", "perl", "1.0.1"},
7272
{"php", "php", "php", "1.0.0"},
73-
{"py", "py", "python", "1.0.0"},
73+
{"py", "py", "python", "1.0.1"},
7474
{"r", "r", "r", "1.0.0"},
7575
{"rkt", "rkt", "racket", "1.0.0"},
7676
{"rb", "rb", "ruby", "1.0.0"},

0 commit comments

Comments
 (0)