diff options
author | Peter Melnichenko <mpeterval@gmail.com> | 2017-09-14 12:10:39 +0300 |
---|---|---|
committer | Peter Melnichenko <mpeterval@gmail.com> | 2017-09-14 12:10:39 +0300 |
commit | dd6911ef15fcdda7a99d50a29a1f315993c33991 (patch) | |
tree | ea8beabc6461bad100904cab071d14b650c1dea4 | |
parent | 55ed1b14ab32b925a9f489d65d4f61286a61caeb (diff) | |
download | luafilesystem-dd6911ef15fcdda7a99d50a29a1f315993c33991.tar.gz luafilesystem-dd6911ef15fcdda7a99d50a29a1f315993c33991.tar.bz2 luafilesystem-dd6911ef15fcdda7a99d50a29a1f315993c33991.zip |
Update copyright year [ci skip]
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | doc/us/license.html | 2 | ||||
-rw-r--r-- | src/lfs.c | 4 | ||||
-rw-r--r-- | src/lfs.h | 2 |
4 files changed, 5 insertions, 5 deletions
@@ -5,7 +5,7 @@ | |||
5 | 5 | ||
6 | # LuaFileSystem - File System Library for Lua | 6 | # LuaFileSystem - File System Library for Lua |
7 | 7 | ||
8 | Copyright 2003-2016 Kepler Project | 8 | Copyright 2003-2017 Kepler Project |
9 | 9 | ||
10 | https://keplerproject.github.io/luafilesystem | 10 | https://keplerproject.github.io/luafilesystem |
11 | 11 | ||
diff --git a/doc/us/license.html b/doc/us/license.html index 5048c11..4f828cf 100644 --- a/doc/us/license.html +++ b/doc/us/license.html | |||
@@ -84,7 +84,7 @@ Ierusalimschy, André Carregal and Tomás Guisasola. | |||
84 | The implementation is not derived from licensed software.</p> | 84 | The implementation is not derived from licensed software.</p> |
85 | 85 | ||
86 | <hr/> | 86 | <hr/> |
87 | <p>Copyright © 2003 Kepler Project.</p> | 87 | <p>Copyright © 2003 - 2017 Kepler Project.</p> |
88 | 88 | ||
89 | <p>Permission is hereby granted, free of charge, to any person | 89 | <p>Permission is hereby granted, free of charge, to any person |
90 | obtaining a copy of this software and associated documentation | 90 | obtaining a copy of this software and associated documentation |
@@ -1,6 +1,6 @@ | |||
1 | /* | 1 | /* |
2 | ** LuaFileSystem | 2 | ** LuaFileSystem |
3 | ** Copyright Kepler Project 2003 - 2016 (http://keplerproject.github.io/luafilesystem) | 3 | ** Copyright Kepler Project 2003 - 2017 (http://keplerproject.github.io/luafilesystem) |
4 | ** | 4 | ** |
5 | ** File system manipulation library. | 5 | ** File system manipulation library. |
6 | ** This library offers these functions: | 6 | ** This library offers these functions: |
@@ -916,7 +916,7 @@ static int link_info (lua_State *L) { | |||
916 | ** Assumes the table is on top of the stack. | 916 | ** Assumes the table is on top of the stack. |
917 | */ | 917 | */ |
918 | static void set_info (lua_State *L) { | 918 | static void set_info (lua_State *L) { |
919 | lua_pushliteral(L, "Copyright (C) 2003-2016 Kepler Project"); | 919 | lua_pushliteral(L, "Copyright (C) 2003-2017 Kepler Project"); |
920 | lua_setfield(L, -2, "_COPYRIGHT"); | 920 | lua_setfield(L, -2, "_COPYRIGHT"); |
921 | lua_pushliteral(L, "LuaFileSystem is a Lua library developed to complement the set of functions related to file systems offered by the standard Lua distribution"); | 921 | lua_pushliteral(L, "LuaFileSystem is a Lua library developed to complement the set of functions related to file systems offered by the standard Lua distribution"); |
922 | lua_setfield(L, -2, "_DESCRIPTION"); | 922 | lua_setfield(L, -2, "_DESCRIPTION"); |
@@ -1,6 +1,6 @@ | |||
1 | /* | 1 | /* |
2 | ** LuaFileSystem | 2 | ** LuaFileSystem |
3 | ** Copyright Kepler Project 2003 - 2016 (http://keplerproject.github.io/luafilesystem) | 3 | ** Copyright Kepler Project 2003 - 2017 (http://keplerproject.github.io/luafilesystem) |
4 | */ | 4 | */ |
5 | 5 | ||
6 | /* Define 'chdir' for systems that do not implement it */ | 6 | /* Define 'chdir' for systems that do not implement it */ |