Skip to content

Commit

Permalink
Happy new year! (update copyright year)
Browse files Browse the repository at this point in the history
Let's not wait until May this time
(f0a9b95)!
  • Loading branch information
cremno committed Jan 30, 2014
1 parent a68a517 commit 3ee946d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion MITL
@@ -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"),
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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"),
Expand Down
2 changes: 1 addition & 1 deletion 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
Expand Down
4 changes: 2 additions & 2 deletions src/print.c
Expand Up @@ -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);
Expand All @@ -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);
Expand Down

0 comments on commit 3ee946d

Please sign in to comment.