From 4177d237e3ed642b2bba5bec13127a44d2b0524d Mon Sep 17 00:00:00 2001 From: Li Jin Date: Wed, 7 Jan 2026 16:38:59 +0800 Subject: Bumped year. [skip CI] --- LICENSE | 2 +- doc/docs/README.md | 2 +- doc/docs/doc/README.md | 14 +++++++------- doc/docs/zh/README.md | 2 +- src/yue.cpp | 2 +- src/yue_wasm.cpp | 2 +- src/yuescript/yue_ast.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 +- 13 files changed, 19 insertions(+), 19 deletions(-) diff --git a/LICENSE b/LICENSE index ca28207..aebc6e7 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2017-2025 Li Jin +Copyright (c) 2017-2026 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/doc/docs/README.md b/doc/docs/README.md index 21e47c4..098d7da 100755 --- a/doc/docs/README.md +++ b/doc/docs/README.md @@ -3,6 +3,6 @@ home: true heroImage: ./image/yuescript.svg actionText: Quick Start → actionLink: /doc/ -footer: MIT Licensed | Copyright © 2017-2025 Li Jin +footer: MIT Licensed | Copyright © 2017-2026 Li Jin --- diff --git a/doc/docs/doc/README.md b/doc/docs/doc/README.md index 0047a3f..5308ebc 100755 --- a/doc/docs/doc/README.md +++ b/doc/docs/doc/README.md @@ -223,12 +223,12 @@ Usage: yue [options|files|directories] ... Execute without options to enter REPL, type symbol '$' in a single line to start/stop multi-line mode ``` -  Use cases: -  Recursively compile every YueScript file with extension **.yue** under current path: **yue .** -  Compile and save results to a target path: **yue -t /target/path/ .** -  Compile and reserve debug info: **yue -l .** -  Compile and generate minified codes: **yue -m .** -  Execute raw codes: **yue -e 'print 123'** +  Use cases: +  Recursively compile every YueScript file with extension **.yue** under current path: **yue .** +  Compile and save results to a target path: **yue -t /target/path/ .** +  Compile and reserve debug info: **yue -l .** +  Compile and generate minified codes: **yue -m .** +  Execute raw codes: **yue -e 'print 123'**   Execute a YueScript file: **yue -e main.yue** ## Macro @@ -5041,7 +5041,7 @@ simplified: boolean ## Licence: MIT -Copyright (c) 2017-2025 Li Jin \ +Copyright (c) 2017-2026 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/doc/docs/zh/README.md b/doc/docs/zh/README.md index f5c9811..05b2069 100755 --- a/doc/docs/zh/README.md +++ b/doc/docs/zh/README.md @@ -3,6 +3,6 @@ home: true heroImage: /image/yuescript.svg actionText: 快速上手 → actionLink: /zh/doc/ -footer: MIT Licensed | Copyright © 2017-2025 Li Jin +footer: MIT Licensed | Copyright © 2017-2026 Li Jin --- diff --git a/src/yue.cpp b/src/yue.cpp index 5633f54..b93f75e 100644 --- a/src/yue.cpp +++ b/src/yue.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2017-2025 Li Jin +/* Copyright (c) 2017-2026 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 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 20f3794..abb291e 100644 --- a/src/yue_wasm.cpp +++ b/src/yue_wasm.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2017-2025 Li Jin +/* Copyright (c) 2017-2026 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 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.cpp b/src/yuescript/yue_ast.cpp index d85e32e..14d8db8 100644 --- a/src/yuescript/yue_ast.cpp +++ b/src/yuescript/yue_ast.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2017-2025 Li Jin +/* Copyright (c) 2017-2026 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 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 885a038..ba4186d 100644 --- a/src/yuescript/yue_ast.h +++ b/src/yuescript/yue_ast.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2017-2025 Li Jin +/* Copyright (c) 2017-2026 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 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 cae01dd..cffa7a8 100644 --- a/src/yuescript/yue_compiler.cpp +++ b/src/yuescript/yue_compiler.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2017-2025 Li Jin +/* Copyright (c) 2017-2026 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 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 cdd83e0..eb5fb16 100644 --- a/src/yuescript/yue_compiler.h +++ b/src/yuescript/yue_compiler.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2017-2025 Li Jin +/* Copyright (c) 2017-2026 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 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 17b10c6..1dfe978 100644 --- a/src/yuescript/yue_parser.cpp +++ b/src/yuescript/yue_parser.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2017-2025 Li Jin +/* Copyright (c) 2017-2026 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 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 7deaa18..acb56d0 100644 --- a/src/yuescript/yue_parser.h +++ b/src/yuescript/yue_parser.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2017-2025 Li Jin +/* Copyright (c) 2017-2026 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 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 62969fe..fd2bf62 100644 --- a/src/yuescript/yuescript.cpp +++ b/src/yuescript/yuescript.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2017-2025 Li Jin +/* Copyright (c) 2017-2026 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 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