From a0f40042cb50223d21ff62376ddce24b6d8a7557 Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Sat, 7 Jan 2023 15:03:35 -0600 Subject: [PATCH] Update copyright year. --- Makefile | 2 +- src/boot/array_test.c | 2 +- src/boot/boot.c | 2 +- src/boot/boot.janet | 2 +- src/boot/buffer_test.c | 2 +- src/boot/number_test.c | 2 +- src/boot/system_test.c | 2 +- src/boot/table_test.c | 2 +- src/core/abstract.c | 2 +- src/core/array.c | 2 +- src/core/asm.c | 2 +- src/core/buffer.c | 2 +- src/core/bytecode.c | 2 +- src/core/capi.c | 2 +- src/core/cfuns.c | 2 +- src/core/compile.c | 2 +- src/core/compile.h | 2 +- src/core/corelib.c | 2 +- src/core/debug.c | 2 +- src/core/emit.c | 2 +- src/core/emit.h | 2 +- src/core/ev.c | 2 +- src/core/features.h | 2 +- src/core/ffi.c | 2 +- src/core/fiber.c | 2 +- src/core/fiber.h | 2 +- src/core/gc.c | 2 +- src/core/gc.h | 2 +- src/core/inttypes.c | 2 +- src/core/io.c | 2 +- src/core/marsh.c | 2 +- src/core/math.c | 2 +- src/core/net.c | 2 +- src/core/os.c | 2 +- src/core/parse.c | 2 +- src/core/peg.c | 2 +- src/core/pp.c | 2 +- src/core/regalloc.c | 2 +- src/core/regalloc.h | 2 +- src/core/run.c | 2 +- src/core/specials.c | 2 +- src/core/state.c | 2 +- src/core/state.h | 2 +- src/core/string.c | 2 +- src/core/strtod.c | 2 +- src/core/struct.c | 2 +- src/core/symcache.c | 2 +- src/core/symcache.h | 2 +- src/core/table.c | 2 +- src/core/tuple.c | 2 +- src/core/util.c | 2 +- src/core/util.h | 2 +- src/core/value.c | 2 +- src/core/vector.c | 2 +- src/core/vector.h | 2 +- src/core/vm.c | 2 +- src/core/wrap.c | 2 +- src/include/janet.h | 2 +- src/mainclient/shell.c | 2 +- test/suite0011.janet | 2 +- test/suite0012.janet | 2 +- test/suite0013.janet | 2 +- 62 files changed, 62 insertions(+), 62 deletions(-) diff --git a/Makefile b/Makefile index a72413b6..b4248f31 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# Copyright (c) 2022 Calvin Rose +# Copyright (c) 2023 Calvin Rose # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to diff --git a/src/boot/array_test.c b/src/boot/array_test.c index f1f5ff59..f7b88d7a 100644 --- a/src/boot/array_test.c +++ b/src/boot/array_test.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/boot/boot.c b/src/boot/boot.c index fa0b58e7..30255ac6 100644 --- a/src/boot/boot.c +++ b/src/boot/boot.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/boot/boot.janet b/src/boot/boot.janet index 4b0af9cd..df5152d0 100644 --- a/src/boot/boot.janet +++ b/src/boot/boot.janet @@ -1,5 +1,5 @@ # The core janet library -# Copyright 2022 © Calvin Rose +# Copyright 2023 © Calvin Rose ### ### diff --git a/src/boot/buffer_test.c b/src/boot/buffer_test.c index 3d35df19..c5c07278 100644 --- a/src/boot/buffer_test.c +++ b/src/boot/buffer_test.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/boot/number_test.c b/src/boot/number_test.c index 82fbd955..77053704 100644 --- a/src/boot/number_test.c +++ b/src/boot/number_test.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/boot/system_test.c b/src/boot/system_test.c index 0879f810..8d58c5e6 100644 --- a/src/boot/system_test.c +++ b/src/boot/system_test.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/boot/table_test.c b/src/boot/table_test.c index 76b6d437..4b941ca2 100644 --- a/src/boot/table_test.c +++ b/src/boot/table_test.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/abstract.c b/src/core/abstract.c index e791536c..9c4740e8 100644 --- a/src/core/abstract.c +++ b/src/core/abstract.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/array.c b/src/core/array.c index ee7d9d22..fe818225 100644 --- a/src/core/array.c +++ b/src/core/array.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/asm.c b/src/core/asm.c index 95785e48..1874d223 100644 --- a/src/core/asm.c +++ b/src/core/asm.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/buffer.c b/src/core/buffer.c index 48006c0d..66101ddc 100644 --- a/src/core/buffer.c +++ b/src/core/buffer.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/bytecode.c b/src/core/bytecode.c index 2f4513c1..2da4418b 100644 --- a/src/core/bytecode.c +++ b/src/core/bytecode.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/capi.c b/src/core/capi.c index 8f7ec631..0b918e0e 100644 --- a/src/core/capi.c +++ b/src/core/capi.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/cfuns.c b/src/core/cfuns.c index 46554fe2..7656fe5e 100644 --- a/src/core/cfuns.c +++ b/src/core/cfuns.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/compile.c b/src/core/compile.c index 9243fa17..2ad46313 100644 --- a/src/core/compile.c +++ b/src/core/compile.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/compile.h b/src/core/compile.h index 1cf68f58..7c091ee1 100644 --- a/src/core/compile.h +++ b/src/core/compile.h @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/corelib.c b/src/core/corelib.c index a1de6e7a..56c52b78 100644 --- a/src/core/corelib.c +++ b/src/core/corelib.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/debug.c b/src/core/debug.c index 6d83d4e4..e342cfa5 100644 --- a/src/core/debug.c +++ b/src/core/debug.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/emit.c b/src/core/emit.c index ecff9509..e1f921a4 100644 --- a/src/core/emit.c +++ b/src/core/emit.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/emit.h b/src/core/emit.h index 14430d9b..ac572001 100644 --- a/src/core/emit.h +++ b/src/core/emit.h @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/ev.c b/src/core/ev.c index 3c229100..5ceb075b 100644 --- a/src/core/ev.c +++ b/src/core/ev.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/features.h b/src/core/features.h index ce5e3bf1..da8c248d 100644 --- a/src/core/features.h +++ b/src/core/features.h @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/ffi.c b/src/core/ffi.c index 1abee4b5..8b578ad7 100644 --- a/src/core/ffi.c +++ b/src/core/ffi.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/fiber.c b/src/core/fiber.c index 425682bc..5dd3527b 100644 --- a/src/core/fiber.c +++ b/src/core/fiber.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/fiber.h b/src/core/fiber.h index 2aa032be..7c99fbe7 100644 --- a/src/core/fiber.h +++ b/src/core/fiber.h @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/gc.c b/src/core/gc.c index 5cdb3624..9e80b9a6 100644 --- a/src/core/gc.c +++ b/src/core/gc.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/gc.h b/src/core/gc.h index 307f494a..175caeba 100644 --- a/src/core/gc.h +++ b/src/core/gc.h @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/inttypes.c b/src/core/inttypes.c index c27811f4..364d9ea8 100644 --- a/src/core/inttypes.c +++ b/src/core/inttypes.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose & contributors +* Copyright (c) 2023 Calvin Rose & contributors * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/io.c b/src/core/io.c index e05e7c01..fa23ded3 100644 --- a/src/core/io.c +++ b/src/core/io.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/marsh.c b/src/core/marsh.c index 3fa3a6d0..f27a1374 100644 --- a/src/core/marsh.c +++ b/src/core/marsh.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/math.c b/src/core/math.c index 5ef249fa..67a77992 100644 --- a/src/core/math.c +++ b/src/core/math.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/net.c b/src/core/net.c index 3c3a3d0d..9ce53cbf 100644 --- a/src/core/net.c +++ b/src/core/net.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose and contributors. +* Copyright (c) 2023 Calvin Rose and contributors. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/os.c b/src/core/os.c index a6a4594a..daa4bad4 100644 --- a/src/core/os.c +++ b/src/core/os.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose and contributors. +* Copyright (c) 2023 Calvin Rose and contributors. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/parse.c b/src/core/parse.c index af07d6a6..4d98490f 100644 --- a/src/core/parse.c +++ b/src/core/parse.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/peg.c b/src/core/peg.c index 3759b973..236d497b 100644 --- a/src/core/peg.c +++ b/src/core/peg.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/pp.c b/src/core/pp.c index c8b52f6f..18409de0 100644 --- a/src/core/pp.c +++ b/src/core/pp.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/regalloc.c b/src/core/regalloc.c index 8df99a05..1b8b7071 100644 --- a/src/core/regalloc.c +++ b/src/core/regalloc.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/regalloc.h b/src/core/regalloc.h index 473a3af5..b7521a52 100644 --- a/src/core/regalloc.h +++ b/src/core/regalloc.h @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/run.c b/src/core/run.c index be8041e2..25748811 100644 --- a/src/core/run.c +++ b/src/core/run.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/specials.c b/src/core/specials.c index d2c44106..4b81ea37 100644 --- a/src/core/specials.c +++ b/src/core/specials.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/state.c b/src/core/state.c index 77b4ce67..eab0b710 100644 --- a/src/core/state.c +++ b/src/core/state.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/state.h b/src/core/state.h index 70480507..0abb0d98 100644 --- a/src/core/state.h +++ b/src/core/state.h @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/string.c b/src/core/string.c index 632f7a50..1e1d9622 100644 --- a/src/core/string.c +++ b/src/core/string.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/strtod.c b/src/core/strtod.c index 2ca9ed11..38cc442c 100644 --- a/src/core/strtod.c +++ b/src/core/strtod.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/struct.c b/src/core/struct.c index dfa99fdc..accdf383 100644 --- a/src/core/struct.c +++ b/src/core/struct.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/symcache.c b/src/core/symcache.c index d7757259..8da6dfa1 100644 --- a/src/core/symcache.c +++ b/src/core/symcache.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/symcache.h b/src/core/symcache.h index 507e711c..cafe9ad8 100644 --- a/src/core/symcache.h +++ b/src/core/symcache.h @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/table.c b/src/core/table.c index 546f9b8e..5e711233 100644 --- a/src/core/table.c +++ b/src/core/table.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/tuple.c b/src/core/tuple.c index a736d4a3..1c51efc2 100644 --- a/src/core/tuple.c +++ b/src/core/tuple.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/util.c b/src/core/util.c index 937dbfbc..78af8654 100644 --- a/src/core/util.c +++ b/src/core/util.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/util.h b/src/core/util.h index 551dfd17..6820f5aa 100644 --- a/src/core/util.h +++ b/src/core/util.h @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/value.c b/src/core/value.c index c114a6ea..e3a192b8 100644 --- a/src/core/value.c +++ b/src/core/value.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/vector.c b/src/core/vector.c index cc3afccd..90ff60dc 100644 --- a/src/core/vector.c +++ b/src/core/vector.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/vector.h b/src/core/vector.h index 3cba01ff..306f88e2 100644 --- a/src/core/vector.h +++ b/src/core/vector.h @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/vm.c b/src/core/vm.c index 6bffa9e3..78932125 100644 --- a/src/core/vm.c +++ b/src/core/vm.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/core/wrap.c b/src/core/wrap.c index 366e2c13..3ff13f9f 100644 --- a/src/core/wrap.c +++ b/src/core/wrap.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/include/janet.h b/src/include/janet.h index ba31baa2..b0136f01 100644 --- a/src/include/janet.h +++ b/src/include/janet.h @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/mainclient/shell.c b/src/mainclient/shell.c index 1a34432f..34b33956 100644 --- a/src/mainclient/shell.c +++ b/src/mainclient/shell.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Calvin Rose +* Copyright (c) 2023 Calvin Rose * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/test/suite0011.janet b/test/suite0011.janet index b36b3821..dd5182d4 100644 --- a/test/suite0011.janet +++ b/test/suite0011.janet @@ -1,4 +1,4 @@ -# Copyright (c) 2022 Calvin Rose & contributors +# Copyright (c) 2023 Calvin Rose & contributors # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to diff --git a/test/suite0012.janet b/test/suite0012.janet index 215fd2a5..834e1628 100644 --- a/test/suite0012.janet +++ b/test/suite0012.janet @@ -1,4 +1,4 @@ -# Copyright (c) 2022 Calvin Rose & contributors +# Copyright (c) 2023 Calvin Rose & contributors # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to diff --git a/test/suite0013.janet b/test/suite0013.janet index 7991ec34..f64cee93 100644 --- a/test/suite0013.janet +++ b/test/suite0013.janet @@ -1,4 +1,4 @@ -# Copyright (c) 2022 Calvin Rose & contributors +# Copyright (c) 2023 Calvin Rose & contributors # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to