From 5751d3fd429bf3694ec5297f55304d1e97da1bf0 Mon Sep 17 00:00:00 2001 From: "Justin J. Meza" Date: Thu, 13 Dec 2012 00:02:17 -0500 Subject: [PATCH] minor bookkeeping changes --- interpreter.h | 2 +- lexer.h | 2 +- main.c | 4 ++-- parser.h | 2 +- tokenizer.h | 2 +- unicode.h | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/interpreter.h b/interpreter.h index 1eb824a..7418875 100644 --- a/interpreter.h +++ b/interpreter.h @@ -8,7 +8,7 @@ * * \author Justin J. Meza * - * \date 2010-2011 + * \date 2010-2012 */ #ifndef __INTERPRETER_H__ diff --git a/lexer.h b/lexer.h index b339d29..7ada55f 100644 --- a/lexer.h +++ b/lexer.h @@ -9,7 +9,7 @@ * * \author Justin J. Meza * - * \date 2010-2011 + * \date 2010-2012 */ #ifndef __LEXER_H__ diff --git a/main.c b/main.c index b932aa7..69fb74b 100644 --- a/main.c +++ b/main.c @@ -4,7 +4,7 @@ * \section license License * * lci - a LOLCODE interpreter written in C. - * Copyright (C) 2010-2011 Justin J. Meza + * Copyright (C) 2010-2012 Justin J. Meza * * This program is free software: you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free Software @@ -151,7 +151,7 @@ int main(int argc, char **argv) FILE *file = NULL; int ch; - char *revision = "v0.10.2"; + char *revision = "v0.10.3"; program_name = argv[0]; while ((ch = getopt_long(argc, argv, shortopt, longopt, NULL)) != -1) { diff --git a/parser.h b/parser.h index 278cff5..1d2550c 100644 --- a/parser.h +++ b/parser.h @@ -8,7 +8,7 @@ * * \author Justin J. Meza * - * \date 2010-2011 + * \date 2010-2012 */ /** diff --git a/tokenizer.h b/tokenizer.h index f24643b..6bbc3b7 100644 --- a/tokenizer.h +++ b/tokenizer.h @@ -9,7 +9,7 @@ * * \author Justin J. Meza * - * \date 2010-2011 + * \date 2010-2012 */ #ifndef __TOKENIZER_H__ diff --git a/unicode.h b/unicode.h index aed38a2..c4ddf46 100644 --- a/unicode.h +++ b/unicode.h @@ -6,7 +6,7 @@ * * \author Justin J. Meza * - * \date 2010-2011 + * \date 2010-2012 */ #ifndef __UNICODE_H__