From 395d5bac06bba03a863c1bb18464fad8a84cd384 Mon Sep 17 00:00:00 2001 From: Li Jin Date: Tue, 17 Jan 2023 11:26:56 +0800 Subject: update Year. --- doc/docs/README.md | 2 +- doc/docs/doc/README.md | 2 +- src/yue.cpp | 2 +- src/yue_wasm.cpp | 2 +- src/yuescript/yue_ast.h | 2 +- src/yuescript/yue_compiler.cpp | 2 +- src/yuescript/yue_compiler.h | 2 +- src/yuescript/yue_parser.cpp | 2 +- src/yuescript/yue_parser.h | 2 +- src/yuescript/yuescript.cpp | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/doc/docs/README.md b/doc/docs/README.md index 0d23ed1..df09a37 100755 --- a/doc/docs/README.md +++ b/doc/docs/README.md @@ -4,6 +4,6 @@ heroImage: ./image/yuescript.svg tagline: A language that compiles to Lua actionText: Quick Start → actionLink: /doc/ -footer: MIT Licensed | Copyright © 2022 Li Jin +footer: MIT Licensed | Copyright © 2023 Li Jin --- diff --git a/doc/docs/doc/README.md b/doc/docs/doc/README.md index 8720754..49356b8 100755 --- a/doc/docs/doc/README.md +++ b/doc/docs/doc/README.md @@ -3250,7 +3250,7 @@ print i, k -- these have been updated ## Licence: MIT -Copyright (c) 2022 Li Jin +Copyright (c) 2023 Li Jin Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/src/yue.cpp b/src/yue.cpp index 3a61271..5679e58 100644 --- a/src/yue.cpp +++ b/src/yue.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2022 Jin Li, dragon-fly@qq.com +/* Copyright (c) 2023 Jin Li, dragon-fly@qq.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/src/yue_wasm.cpp b/src/yue_wasm.cpp index 395388b..a721ae3 100644 --- a/src/yue_wasm.cpp +++ b/src/yue_wasm.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2022 Jin Li, dragon-fly@qq.com +/* Copyright (c) 2023 Jin Li, dragon-fly@qq.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/src/yuescript/yue_ast.h b/src/yuescript/yue_ast.h index 6a1a940..076d5f4 100644 --- a/src/yuescript/yue_ast.h +++ b/src/yuescript/yue_ast.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2022 Jin Li, dragon-fly@qq.com +/* Copyright (c) 2023 Jin Li, dragon-fly@qq.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/src/yuescript/yue_compiler.cpp b/src/yuescript/yue_compiler.cpp index 5a54a05..b47da6c 100644 --- a/src/yuescript/yue_compiler.cpp +++ b/src/yuescript/yue_compiler.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2022 Jin Li, dragon-fly@qq.com +/* Copyright (c) 2023 Jin Li, dragon-fly@qq.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/src/yuescript/yue_compiler.h b/src/yuescript/yue_compiler.h index a3f4367..c7a0e1b 100644 --- a/src/yuescript/yue_compiler.h +++ b/src/yuescript/yue_compiler.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2022 Jin Li, dragon-fly@qq.com +/* Copyright (c) 2023 Jin Li, dragon-fly@qq.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/src/yuescript/yue_parser.cpp b/src/yuescript/yue_parser.cpp index e3d6b07..821385b 100644 --- a/src/yuescript/yue_parser.cpp +++ b/src/yuescript/yue_parser.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2022 Jin Li, dragon-fly@qq.com +/* Copyright (c) 2023 Jin Li, dragon-fly@qq.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/src/yuescript/yue_parser.h b/src/yuescript/yue_parser.h index 0e87a71..9323422 100644 --- a/src/yuescript/yue_parser.h +++ b/src/yuescript/yue_parser.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2022 Jin Li, dragon-fly@qq.com +/* Copyright (c) 2023 Jin Li, dragon-fly@qq.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/src/yuescript/yuescript.cpp b/src/yuescript/yuescript.cpp index 0dca1f7..b01c3eb 100644 --- a/src/yuescript/yuescript.cpp +++ b/src/yuescript/yuescript.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2022 Jin Li, dragon-fly@qq.com +/* Copyright (c) 2023 Jin Li, dragon-fly@qq.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -- cgit v1.2.3-55-g6feb