summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2016-11-21 23:51:39 (GMT)
committerYann Collet <cyan@fb.com>2016-11-21 23:51:39 (GMT)
commit8b233b228dbda484d1d545c5a3ecaf06aef3e930 (patch)
tree03d55b0e47c8e897f7d4be4bcf8eaafd0ba6eeb6
parentba7a85b463fe6e6b2a3b9db24277054eb54a42a7 (diff)
downloadlz4-8b233b228dbda484d1d545c5a3ecaf06aef3e930.zip
lz4-8b233b228dbda484d1d545c5a3ecaf06aef3e930.tar.gz
lz4-8b233b228dbda484d1d545c5a3ecaf06aef3e930.tar.bz2
added a few dates
-rw-r--r--Makefile2
-rw-r--r--lib/LICENSE2
-rw-r--r--lib/Makefile2
-rw-r--r--lib/lz4frame.h2
-rw-r--r--lib/lz4frame_static.h2
-rw-r--r--lib/lz4hc.c2
-rw-r--r--programs/datagen.c2
-rw-r--r--programs/datagen.h2
-rw-r--r--programs/lz4cli.c2
-rw-r--r--programs/lz4io.c2
-rw-r--r--programs/lz4io.h2
-rw-r--r--tests/datagencli.c2
12 files changed, 12 insertions, 12 deletions
diff --git a/Makefile b/Makefile
index 700d772..48e6752 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
# ################################################################
# LZ4 - Makefile
-# Copyright (C) Yann Collet 2011-2015
+# Copyright (C) Yann Collet 2011-2016
# All rights reserved.
#
# BSD license
diff --git a/lib/LICENSE b/lib/LICENSE
index bd3c80d..74c2cdd 100644
--- a/lib/LICENSE
+++ b/lib/LICENSE
@@ -1,5 +1,5 @@
LZ4 Library
-Copyright (c) 2011-2015, Yann Collet
+Copyright (c) 2011-2016, Yann Collet
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
diff --git a/lib/Makefile b/lib/Makefile
index d6e3668..28242cc 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -1,6 +1,6 @@
# ################################################################
# LZ4 library - Makefile
-# Copyright (C) Yann Collet 2011-2015
+# Copyright (C) Yann Collet 2011-2016
# All rights reserved.
#
# BSD license
diff --git a/lib/lz4frame.h b/lib/lz4frame.h
index 9449e0d..3104d2e 100644
--- a/lib/lz4frame.h
+++ b/lib/lz4frame.h
@@ -1,7 +1,7 @@
/*
LZ4 auto-framing library
Header File
- Copyright (C) 2011-2015, Yann Collet.
+ Copyright (C) 2011-2016, Yann Collet.
BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
Redistribution and use in source and binary forms, with or without
diff --git a/lib/lz4frame_static.h b/lib/lz4frame_static.h
index d922e39..f2228a5 100644
--- a/lib/lz4frame_static.h
+++ b/lib/lz4frame_static.h
@@ -1,7 +1,7 @@
/*
LZ4 auto-framing library
Header File for static linking only
- Copyright (C) 2011-2015, Yann Collet.
+ Copyright (C) 2011-2016, Yann Collet.
BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
diff --git a/lib/lz4hc.c b/lib/lz4hc.c
index 6de8e8f..298550c 100644
--- a/lib/lz4hc.c
+++ b/lib/lz4hc.c
@@ -1,6 +1,6 @@
/*
LZ4 HC - High Compression Mode of LZ4
- Copyright (C) 2011-2015, Yann Collet.
+ Copyright (C) 2011-2016, Yann Collet.
BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
diff --git a/programs/datagen.c b/programs/datagen.c
index ed37c2a..f97c2d0 100644
--- a/programs/datagen.c
+++ b/programs/datagen.c
@@ -1,6 +1,6 @@
/*
datagen.c - compressible data generator test tool
- Copyright (C) Yann Collet 2012-2015
+ Copyright (C) Yann Collet 2012-2016
GPL v2 License
diff --git a/programs/datagen.h b/programs/datagen.h
index 680afa2..91c5b02 100644
--- a/programs/datagen.h
+++ b/programs/datagen.h
@@ -1,6 +1,6 @@
/*
datagen.h - compressible data generator header
- Copyright (C) Yann Collet 2012-2015
+ Copyright (C) Yann Collet 2012-2016
GPL v2 License
diff --git a/programs/lz4cli.c b/programs/lz4cli.c
index 297ce6b..71378aa 100644
--- a/programs/lz4cli.c
+++ b/programs/lz4cli.c
@@ -1,6 +1,6 @@
/*
LZ4cli - LZ4 Command Line Interface
- Copyright (C) Yann Collet 2011-2015
+ Copyright (C) Yann Collet 2011-2016
GPL v2 License
diff --git a/programs/lz4io.c b/programs/lz4io.c
index 2ffb541..bc2ba95 100644
--- a/programs/lz4io.c
+++ b/programs/lz4io.c
@@ -1,6 +1,6 @@
/*
LZ4io.c - LZ4 File/Stream Interface
- Copyright (C) Yann Collet 2011-2015
+ Copyright (C) Yann Collet 2011-2016
GPL v2 License
diff --git a/programs/lz4io.h b/programs/lz4io.h
index e1ab5f3..6190f00 100644
--- a/programs/lz4io.h
+++ b/programs/lz4io.h
@@ -1,6 +1,6 @@
/*
LZ4io.h - LZ4 File/Stream Interface
- Copyright (C) Yann Collet 2011-2015
+ Copyright (C) Yann Collet 2011-2016
GPL v2 License
This program is free software; you can redistribute it and/or modify
diff --git a/tests/datagencli.c b/tests/datagencli.c
index d74d5dd..0b78d37 100644
--- a/tests/datagencli.c
+++ b/tests/datagencli.c
@@ -1,7 +1,7 @@
/*
datagencli.c
compressible data command line generator
- Copyright (C) Yann Collet 2012-2015
+ Copyright (C) Yann Collet 2012-2016
GPL v2 License