aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Melnichenko <mpeterval@gmail.com>2017-09-14 12:10:39 +0300
committerPeter Melnichenko <mpeterval@gmail.com>2017-09-14 12:10:39 +0300
commitdd6911ef15fcdda7a99d50a29a1f315993c33991 (patch)
treeea8beabc6461bad100904cab071d14b650c1dea4
parent55ed1b14ab32b925a9f489d65d4f61286a61caeb (diff)
downloadluafilesystem-dd6911ef15fcdda7a99d50a29a1f315993c33991.tar.gz
luafilesystem-dd6911ef15fcdda7a99d50a29a1f315993c33991.tar.bz2
luafilesystem-dd6911ef15fcdda7a99d50a29a1f315993c33991.zip
Update copyright year [ci skip]
-rw-r--r--README.md2
-rw-r--r--doc/us/license.html2
-rw-r--r--src/lfs.c4
-rw-r--r--src/lfs.h2
4 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index 841ec49..f95cf4c 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@
5 5
6# LuaFileSystem - File System Library for Lua 6# LuaFileSystem - File System Library for Lua
7 7
8Copyright 2003-2016 Kepler Project 8Copyright 2003-2017 Kepler Project
9 9
10https://keplerproject.github.io/luafilesystem 10https://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&eacute; Carregal and Tom&aacute;s Guisasola.
84The implementation is not derived from licensed software.</p> 84The implementation is not derived from licensed software.</p>
85 85
86<hr/> 86<hr/>
87<p>Copyright &copy; 2003 Kepler Project.</p> 87<p>Copyright &copy; 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
90obtaining a copy of this software and associated documentation 90obtaining a copy of this software and associated documentation
diff --git a/src/lfs.c b/src/lfs.c
index 886add0..be6977e 100644
--- a/src/lfs.c
+++ b/src/lfs.c
@@ -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*/
918static void set_info (lua_State *L) { 918static 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");
diff --git a/src/lfs.h b/src/lfs.h
index 7f7d2ab..4587564 100644
--- a/src/lfs.h
+++ b/src/lfs.h
@@ -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 */