diff options
| author | cremno <[email protected]> | 2014-01-09 15:48:25 +0100 |
|---|---|---|
| committer | cremno <[email protected]> | 2014-01-30 23:17:24 +0100 |
| commit | 3ee946dab4c2c7cbf834bf756c010c47755421dd (patch) | |
| tree | 45361a71207a5c70920e3dcb25b9eb19bd3cefbc | |
| parent | a68a51702876b9c520c21a15bdf03ea91e0439f0 (diff) | |
| download | mruby-3ee946dab4c2c7cbf834bf756c010c47755421dd.tar.gz mruby-3ee946dab4c2c7cbf834bf756c010c47755421dd.zip | |
Happy new year! (update copyright year)
Let's not wait until May this time
(f0a9b95af3d542ac1db7fcb4a3d77990a284c185)!
| -rw-r--r-- | MITL | 2 | ||||
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | include/mruby.h | 2 | ||||
| -rw-r--r-- | src/print.c | 4 |
4 files changed, 5 insertions, 5 deletions
@@ -1,4 +1,4 @@ -Copyright (c) 2013 mruby developers +Copyright (c) 2014 mruby developers Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), @@ -73,7 +73,7 @@ documentation with examples under *examples/mrbgems*. ## License -Copyright (c) 2013 mruby developers +Copyright (c) 2014 mruby developers Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/include/mruby.h b/include/mruby.h index 3a08afde2..27b15a625 100644 --- a/include/mruby.h +++ b/include/mruby.h @@ -1,7 +1,7 @@ /* ** mruby - An embeddable Ruby implementation ** -** Copyright (c) mruby developers 2010-2013 +** Copyright (c) mruby developers 2010-2014 ** ** Permission is hereby granted, free of charge, to any person obtaining ** a copy of this software and associated documentation files (the diff --git a/src/print.c b/src/print.c index 01c9b3cd0..4675d0e41 100644 --- a/src/print.c +++ b/src/print.c @@ -53,7 +53,7 @@ mrb_print_error(mrb_state *mrb) void mrb_show_version(mrb_state *mrb) { - static const char version_msg[] = "mruby - Embeddable Ruby Copyright (c) 2010-2013 mruby developers\n"; + static const char version_msg[] = "mruby - Embeddable Ruby Copyright (c) 2010-2014 mruby developers\n"; mrb_value msg; msg = mrb_str_new(mrb, version_msg, sizeof(version_msg) - 1); @@ -63,7 +63,7 @@ mrb_show_version(mrb_state *mrb) void mrb_show_copyright(mrb_state *mrb) { - static const char copyright_msg[] = "mruby - Copyright (c) 2010-2013 mruby developers\n"; + static const char copyright_msg[] = "mruby - Copyright (c) 2010-2014 mruby developers\n"; mrb_value msg; msg = mrb_str_new(mrb, copyright_msg, sizeof(copyright_msg) - 1); |
