Skip to content

Commit 03f0b50

Browse files
committed
Updated versions
1 parent e91e4b4 commit 03f0b50

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

mapreduce/cnn.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ local mongo = require "mongo"
22
local utils = require "mapreduce.utils"
33

44
local cnn = {
5-
_VERSION = "0.1",
5+
_VERSION = "0.2",
66
_NAME = "cnn",
77
}
88

mapreduce/fs.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
-- module fs
1111
local fs = {
1212
_VERSION = "0.1",
13-
_NAME = "fs",
13+
_NAME = "mapreduce.fs",
1414
}
1515

1616
local utils = require "mapreduce.utils"

mapreduce/init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ local server = require "mapreduce.server"
33
local utils = require "mapreduce.utils"
44

55
local mapreduce = {
6-
_VERSION = "0.1",
6+
_VERSION = "0.2-1",
77
_NAME = "mapreduce",
88
worker = worker,
99
server = server,

mapreduce/job.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
local job = {
2-
_VERSION = "0.1",
2+
_VERSION = "0.2",
33
_NAME = "job",
44
}
55

mapreduce/server.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
local server = {
2-
_VERSION = "0.1",
2+
_VERSION = "0.2",
33
_NAME = "mapreduce.server",
44
}
55

mapreduce/task.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
-- sets the task job for the cluster, which indicates the workers which kind of
22
-- work (MAP,REDUCE,...) must perform
33
local task = {
4-
_VERSION = "0.1",
4+
_VERSION = "0.2",
55
_NAME = "task",
66
}
77

mapreduce/utils.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ local mongo = require "mongo"
33
assert(mongo._VERSION == "0.4" or tonumber(mongo._VERSION > 0.4))
44

55
local utils = {
6-
_VERSION = "0.1",
6+
_VERSION = "0.2",
77
_NAME = "mapreduce.utils",
88
DEFAULT_RW_TIMEOUT = 300, -- seconds
99
DEFAULT_SLEEP = 1, -- seconds

mapreduce/worker.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
local worker = {
2-
_VERSION = "0.1",
2+
_VERSION = "0.2",
33
_NAME = "mapreduce.worker",
44
}
55

0 commit comments

Comments
 (0)