summaryrefslogtreecommitdiff
path: root/xmake/core/base
diff options
context:
space:
mode:
authorruki <[email protected]>2020-12-19 00:41:06 +0800
committerruki <[email protected]>2020-12-19 00:41:06 +0800
commit536f2bd6a092eba91315b7d1e120dff63392a11d (patch)
treee3fb32d868ad4b11333033fd529e2c8b53d9c173 /xmake/core/base
parentc47ddba3dbc6ace6eb38535a33a7b1090b402a60 (diff)
update copyright date
Diffstat (limited to 'xmake/core/base')
-rw-r--r--xmake/core/base/bytes.lua2
-rw-r--r--xmake/core/base/cli.lua2
-rw-r--r--xmake/core/base/colors.lua2
-rw-r--r--xmake/core/base/coroutine.lua2
-rw-r--r--xmake/core/base/deprecated.lua2
-rw-r--r--xmake/core/base/deprecated/interpreter.lua2
-rw-r--r--xmake/core/base/dlist.lua2
-rw-r--r--xmake/core/base/dump.lua2
-rw-r--r--xmake/core/base/emoji.lua2
-rw-r--r--xmake/core/base/filter.lua2
-rw-r--r--xmake/core/base/global.lua2
-rw-r--r--xmake/core/base/hashset.lua2
-rw-r--r--xmake/core/base/interpreter.lua2
-rw-r--r--xmake/core/base/io.lua2
-rw-r--r--xmake/core/base/json.lua2
-rw-r--r--xmake/core/base/log.lua2
-rw-r--r--xmake/core/base/macos.lua2
-rw-r--r--xmake/core/base/math.lua2
-rw-r--r--xmake/core/base/object.lua2
-rw-r--r--xmake/core/base/option.lua2
-rw-r--r--xmake/core/base/os.lua2
-rw-r--r--xmake/core/base/path.lua2
-rw-r--r--xmake/core/base/pipe.lua2
-rw-r--r--xmake/core/base/poller.lua2
-rw-r--r--xmake/core/base/privilege.lua2
-rw-r--r--xmake/core/base/process.lua2
-rw-r--r--xmake/core/base/profiler.lua2
-rw-r--r--xmake/core/base/scheduler.lua2
-rw-r--r--xmake/core/base/scopeinfo.lua2
-rw-r--r--xmake/core/base/semver.lua2
-rw-r--r--xmake/core/base/serialize.lua2
-rw-r--r--xmake/core/base/singleton.lua2
-rw-r--r--xmake/core/base/socket.lua2
-rw-r--r--xmake/core/base/string.lua2
-rw-r--r--xmake/core/base/table.lua2
-rw-r--r--xmake/core/base/task.lua2
-rw-r--r--xmake/core/base/text.lua2
-rw-r--r--xmake/core/base/timer.lua2
-rw-r--r--xmake/core/base/todisplay.lua2
-rw-r--r--xmake/core/base/tty.lua2
-rw-r--r--xmake/core/base/utils.lua2
-rw-r--r--xmake/core/base/winos.lua2
-rw-r--r--xmake/core/base/xmake.lua2
43 files changed, 43 insertions, 43 deletions
diff --git a/xmake/core/base/bytes.lua b/xmake/core/base/bytes.lua
index 40c32beb5..340b21cd0 100644
--- a/xmake/core/base/bytes.lua
+++ b/xmake/core/base/bytes.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file bytes.lua
diff --git a/xmake/core/base/cli.lua b/xmake/core/base/cli.lua
index c163c3c90..a5d3db9ba 100644
--- a/xmake/core/base/cli.lua
+++ b/xmake/core/base/cli.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author OpportunityLiu
-- @file cli.lua
diff --git a/xmake/core/base/colors.lua b/xmake/core/base/colors.lua
index a4b90207c..36846bab2 100644
--- a/xmake/core/base/colors.lua
+++ b/xmake/core/base/colors.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file colors.lua
diff --git a/xmake/core/base/coroutine.lua b/xmake/core/base/coroutine.lua
index c8d2d1ada..2f1c347a8 100644
--- a/xmake/core/base/coroutine.lua
+++ b/xmake/core/base/coroutine.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file coroutine.lua
diff --git a/xmake/core/base/deprecated.lua b/xmake/core/base/deprecated.lua
index 95f5683b2..085d9786e 100644
--- a/xmake/core/base/deprecated.lua
+++ b/xmake/core/base/deprecated.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file deprecated.lua
diff --git a/xmake/core/base/deprecated/interpreter.lua b/xmake/core/base/deprecated/interpreter.lua
index c0e2b8661..4213de8a0 100644
--- a/xmake/core/base/deprecated/interpreter.lua
+++ b/xmake/core/base/deprecated/interpreter.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file deprecated_interpreter.lua
diff --git a/xmake/core/base/dlist.lua b/xmake/core/base/dlist.lua
index 5816f7c92..7967d2afe 100644
--- a/xmake/core/base/dlist.lua
+++ b/xmake/core/base/dlist.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file dlist.lua
diff --git a/xmake/core/base/dump.lua b/xmake/core/base/dump.lua
index 4e3494662..80f4e49b1 100644
--- a/xmake/core/base/dump.lua
+++ b/xmake/core/base/dump.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author OpportunityLiu
-- @file dump.lua
diff --git a/xmake/core/base/emoji.lua b/xmake/core/base/emoji.lua
index f77c7c572..6d3a4ebcb 100644
--- a/xmake/core/base/emoji.lua
+++ b/xmake/core/base/emoji.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file emoji.lua
diff --git a/xmake/core/base/filter.lua b/xmake/core/base/filter.lua
index 5540f09c2..d7595679c 100644
--- a/xmake/core/base/filter.lua
+++ b/xmake/core/base/filter.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file filter.lua
diff --git a/xmake/core/base/global.lua b/xmake/core/base/global.lua
index 61d9d9e3b..ca0c53dec 100644
--- a/xmake/core/base/global.lua
+++ b/xmake/core/base/global.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file global.lua
diff --git a/xmake/core/base/hashset.lua b/xmake/core/base/hashset.lua
index 6cd94ceba..c2d5e131e 100644
--- a/xmake/core/base/hashset.lua
+++ b/xmake/core/base/hashset.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author OpportunityLiu
-- @file hashset.lua
diff --git a/xmake/core/base/interpreter.lua b/xmake/core/base/interpreter.lua
index a92225711..e60a630a1 100644
--- a/xmake/core/base/interpreter.lua
+++ b/xmake/core/base/interpreter.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file interpreter.lua
diff --git a/xmake/core/base/io.lua b/xmake/core/base/io.lua
index c18422a51..38df841a1 100644
--- a/xmake/core/base/io.lua
+++ b/xmake/core/base/io.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file io.lua
diff --git a/xmake/core/base/json.lua b/xmake/core/base/json.lua
index c99ae488e..1807ad2ea 100644
--- a/xmake/core/base/json.lua
+++ b/xmake/core/base/json.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file json.lua
diff --git a/xmake/core/base/log.lua b/xmake/core/base/log.lua
index f8110529a..8c1c1505a 100644
--- a/xmake/core/base/log.lua
+++ b/xmake/core/base/log.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--o
-- @author ruki
-- @file log.lua
diff --git a/xmake/core/base/macos.lua b/xmake/core/base/macos.lua
index 86bba2028..40a96b8c1 100644
--- a/xmake/core/base/macos.lua
+++ b/xmake/core/base/macos.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file macos.lua
diff --git a/xmake/core/base/math.lua b/xmake/core/base/math.lua
index c46982328..17aa1bdfd 100644
--- a/xmake/core/base/math.lua
+++ b/xmake/core/base/math.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author OpportunityLiu
-- @file math.lua
diff --git a/xmake/core/base/object.lua b/xmake/core/base/object.lua
index 2a4d377c0..d31e5effe 100644
--- a/xmake/core/base/object.lua
+++ b/xmake/core/base/object.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file object.lua
diff --git a/xmake/core/base/option.lua b/xmake/core/base/option.lua
index 775f98b7e..126ebfb0a 100644
--- a/xmake/core/base/option.lua
+++ b/xmake/core/base/option.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file option.lua
diff --git a/xmake/core/base/os.lua b/xmake/core/base/os.lua
index 2442cea95..62b0c34de 100644
--- a/xmake/core/base/os.lua
+++ b/xmake/core/base/os.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file os.lua
diff --git a/xmake/core/base/path.lua b/xmake/core/base/path.lua
index 2ebd0ae70..494961c09 100644
--- a/xmake/core/base/path.lua
+++ b/xmake/core/base/path.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file path.lua
diff --git a/xmake/core/base/pipe.lua b/xmake/core/base/pipe.lua
index a3c7df697..5f7c46c06 100644
--- a/xmake/core/base/pipe.lua
+++ b/xmake/core/base/pipe.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file pipe.lua
diff --git a/xmake/core/base/poller.lua b/xmake/core/base/poller.lua
index 8eea321c9..f8e216f26 100644
--- a/xmake/core/base/poller.lua
+++ b/xmake/core/base/poller.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file poller.lua
diff --git a/xmake/core/base/privilege.lua b/xmake/core/base/privilege.lua
index a6adf8cb3..2e6b7c308 100644
--- a/xmake/core/base/privilege.lua
+++ b/xmake/core/base/privilege.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author TitanSnow
-- @file privilege.lua
diff --git a/xmake/core/base/process.lua b/xmake/core/base/process.lua
index 23a3882f4..04259e9a8 100644
--- a/xmake/core/base/process.lua
+++ b/xmake/core/base/process.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file process.lua
diff --git a/xmake/core/base/profiler.lua b/xmake/core/base/profiler.lua
index d3a17a97c..9929e75e6 100644
--- a/xmake/core/base/profiler.lua
+++ b/xmake/core/base/profiler.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file profiler.lua
diff --git a/xmake/core/base/scheduler.lua b/xmake/core/base/scheduler.lua
index 505f965bc..20f19adf9 100644
--- a/xmake/core/base/scheduler.lua
+++ b/xmake/core/base/scheduler.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file scheduler.lua
diff --git a/xmake/core/base/scopeinfo.lua b/xmake/core/base/scopeinfo.lua
index ec9244cb1..45a7761f2 100644
--- a/xmake/core/base/scopeinfo.lua
+++ b/xmake/core/base/scopeinfo.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file scopeinfo.lua
diff --git a/xmake/core/base/semver.lua b/xmake/core/base/semver.lua
index 7c8a72450..a58fd4aaa 100644
--- a/xmake/core/base/semver.lua
+++ b/xmake/core/base/semver.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file semver.lua
diff --git a/xmake/core/base/serialize.lua b/xmake/core/base/serialize.lua
index bca667dcf..99486bf8c 100644
--- a/xmake/core/base/serialize.lua
+++ b/xmake/core/base/serialize.lua
@@ -13,7 +13,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author OpportunityLiu
-- @file serialize.lua
diff --git a/xmake/core/base/singleton.lua b/xmake/core/base/singleton.lua
index c8042e77f..fa404fbd8 100644
--- a/xmake/core/base/singleton.lua
+++ b/xmake/core/base/singleton.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file singleton.lua
diff --git a/xmake/core/base/socket.lua b/xmake/core/base/socket.lua
index 4566ffc48..7269cb504 100644
--- a/xmake/core/base/socket.lua
+++ b/xmake/core/base/socket.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file socket.lua
diff --git a/xmake/core/base/string.lua b/xmake/core/base/string.lua
index 8bfbe3c4f..0be8cc793 100644
--- a/xmake/core/base/string.lua
+++ b/xmake/core/base/string.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file string.lua
diff --git a/xmake/core/base/table.lua b/xmake/core/base/table.lua
index 424baadbf..edd0f42fb 100644
--- a/xmake/core/base/table.lua
+++ b/xmake/core/base/table.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file table.lua
diff --git a/xmake/core/base/task.lua b/xmake/core/base/task.lua
index 786b43a41..cd9922d52 100644
--- a/xmake/core/base/task.lua
+++ b/xmake/core/base/task.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file task.lua
diff --git a/xmake/core/base/text.lua b/xmake/core/base/text.lua
index 83b2a229a..43c81ddb7 100644
--- a/xmake/core/base/text.lua
+++ b/xmake/core/base/text.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author OpportunityLiu
-- @file text.lua
diff --git a/xmake/core/base/timer.lua b/xmake/core/base/timer.lua
index ee60ed8a9..34f0fa881 100644
--- a/xmake/core/base/timer.lua
+++ b/xmake/core/base/timer.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file timer.lua
diff --git a/xmake/core/base/todisplay.lua b/xmake/core/base/todisplay.lua
index 92af86975..1fe9ae033 100644
--- a/xmake/core/base/todisplay.lua
+++ b/xmake/core/base/todisplay.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author OpportunityLiu
-- @file todisplay.lua
diff --git a/xmake/core/base/tty.lua b/xmake/core/base/tty.lua
index 0ee79713a..180232f50 100644
--- a/xmake/core/base/tty.lua
+++ b/xmake/core/base/tty.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file tty.lua
diff --git a/xmake/core/base/utils.lua b/xmake/core/base/utils.lua
index b8bb27bcc..4071490f5 100644
--- a/xmake/core/base/utils.lua
+++ b/xmake/core/base/utils.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file utils.lua
diff --git a/xmake/core/base/winos.lua b/xmake/core/base/winos.lua
index da5dfa1fc..e50b79a92 100644
--- a/xmake/core/base/winos.lua
+++ b/xmake/core/base/winos.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file winos.lua
diff --git a/xmake/core/base/xmake.lua b/xmake/core/base/xmake.lua
index d89c50276..406b85b7e 100644
--- a/xmake/core/base/xmake.lua
+++ b/xmake/core/base/xmake.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file xmake.lua