From dd6911ef15fcdda7a99d50a29a1f315993c33991 Mon Sep 17 00:00:00 2001 From: Peter Melnichenko Date: Thu, 14 Sep 2017 12:10:39 +0300 Subject: Update copyright year [ci skip] --- README.md | 2 +- doc/us/license.html | 2 +- src/lfs.c | 4 ++-- src/lfs.h | 2 +- 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 @@ # LuaFileSystem - File System Library for Lua -Copyright 2003-2016 Kepler Project +Copyright 2003-2017 Kepler Project https://keplerproject.github.io/luafilesystem 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. The implementation is not derived from licensed software.


-

Copyright © 2003 Kepler Project.

+

Copyright © 2003 - 2017 Kepler Project.

Permission is hereby granted, free of charge, to any person obtaining 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 @@ /* ** LuaFileSystem -** Copyright Kepler Project 2003 - 2016 (http://keplerproject.github.io/luafilesystem) +** Copyright Kepler Project 2003 - 2017 (http://keplerproject.github.io/luafilesystem) ** ** File system manipulation library. ** This library offers these functions: @@ -916,7 +916,7 @@ static int link_info (lua_State *L) { ** Assumes the table is on top of the stack. */ static void set_info (lua_State *L) { - lua_pushliteral(L, "Copyright (C) 2003-2016 Kepler Project"); + lua_pushliteral(L, "Copyright (C) 2003-2017 Kepler Project"); lua_setfield(L, -2, "_COPYRIGHT"); 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"); 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 @@ /* ** LuaFileSystem -** Copyright Kepler Project 2003 - 2016 (http://keplerproject.github.io/luafilesystem) +** Copyright Kepler Project 2003 - 2017 (http://keplerproject.github.io/luafilesystem) */ /* Define 'chdir' for systems that do not implement it */ -- cgit v1.2.3-55-g6feb