From 7bb15f5ef8b191a7ff35765988b554b5e7e0310d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ingy=20d=C3=B6t=20Net?= Date: Wed, 1 Jan 2025 09:06:06 -0500 Subject: [PATCH] all: Bump copyright date to 2025 --- License | 2 +- Meta | 2 +- clojure/project.clj | 2 +- clojure/src/yamlscript/core.clj | 2 +- common/project.clj | 2 +- common/readme.md | 2 +- core/doc/yamlscript.md | 2 +- core/project.clj | 2 +- core/src/a0/patch_pprint.clj | 2 +- core/src/yamlscript/ast.clj | 2 +- core/src/yamlscript/builder.clj | 2 +- core/src/yamlscript/common.clj | 2 +- core/src/yamlscript/compiler.clj | 2 +- core/src/yamlscript/composer.clj | 2 +- core/src/yamlscript/constructor.clj | 2 +- core/src/yamlscript/debug.clj | 2 +- core/src/yamlscript/global.clj | 2 +- core/src/yamlscript/parser.clj | 2 +- core/src/yamlscript/printer.clj | 2 +- core/src/yamlscript/re.clj | 2 +- core/src/yamlscript/resolver.clj | 2 +- core/src/yamlscript/runtime.clj | 2 +- core/src/yamlscript/transformer.clj | 2 +- core/src/yamlscript/transformers.clj | 2 +- core/src/yamlscript/util.clj | 2 +- core/src/yamlscript/ysreader.clj | 2 +- core/src/ys/clj.clj | 2 +- core/src/ys/dwim.clj | 2 +- core/src/ys/json.clj | 2 +- core/src/ys/std.clj | 2 +- core/src/ys/yaml.clj | 2 +- core/src/ys/ys.clj | 2 +- core/test/compiler-stack.yaml | 2 +- core/test/compiler.yaml | 2 +- core/test/data-mode.yaml | 2 +- core/test/resolver.yaml | 2 +- core/test/runtime.yaml | 2 +- core/test/transformer.yaml | 2 +- core/test/yamlscript/builder_test.clj | 2 +- core/test/yamlscript/compiler_test.clj | 2 +- core/test/yamlscript/composer_test.clj | 2 +- core/test/yamlscript/constructor_test.clj | 2 +- core/test/yamlscript/parser_test.clj | 2 +- core/test/yamlscript/printer_test.clj | 2 +- core/test/yamlscript/resolver_test.clj | 2 +- core/test/yamlscript/runtime_test.clj | 2 +- core/test/yamlscript/test_runner.clj | 2 +- core/test/yamlscript/transformer_test.clj | 2 +- d/dub.json | 2 +- elixir/README.md | 2 +- go/ReadMe.md | 2 +- .../yamlscript/yamlscript/LibYAMLScript.java | 2 +- julia/LICENSE | 2 +- julia/ReadMe.md | 2 +- libyamlscript/project.clj | 2 +- libyamlscript/src/libyamlscript/API.java | 2 +- libyamlscript/src/libyamlscript/core.clj | 2 +- nodejs/ReadMe.md | 2 +- perl-alien/doc/Alien/YAMLScript.md | 2 +- perl/doc/YAMLScript.md | 2 +- perl/lib/YAMLScript.pm | 2 +- php/License | 2 +- php/ReadMe.md | 2 +- python/ReadMe.md | 2 +- python/lib/yamlscript/__init__.py | 2 +- raku/README.md | 2 +- raku/lib/YAMLScript.rakumod | 2 +- ruby/ReadMe.md | 2 +- ruby/lib/yamlscript.rb | 2 +- rust/ReadMe.md | 2 +- www/src/santa-secrets.md | 48 ------------------- yamltest/src/yamltest/core.clj | 2 +- ys/project.clj | 2 +- ys/src/yamlscript/cli.clj | 2 +- ys/test/yamlscript/cli_test.clj | 2 +- ys/test/yamlscript/test.clj | 2 +- 76 files changed, 75 insertions(+), 123 deletions(-) delete mode 100644 www/src/santa-secrets.md diff --git a/License b/License index 5f5132c51..bb2c93731 100644 --- a/License +++ b/License @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2022-2024 Ingy döt Net and contributors +Copyright (c) 2022-2025 Ingy döt Net 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 deal diff --git a/Meta b/Meta index 1b866be02..e2237f983 100644 --- a/Meta +++ b/Meta @@ -3,7 +3,7 @@ version: 0.1.87 abstract: Program in YAML — Code is Data homepage: https://yamlscript.org license: mit -copyright: 2022-2024 +copyright: 2022-2025 author: name: Ingy döt Net diff --git a/clojure/project.clj b/clojure/project.clj index 5af38b62a..3e674cd0b 100644 --- a/clojure/project.clj +++ b/clojure/project.clj @@ -1,5 +1,5 @@ ;; This code is licensed under MIT license (See License for details) -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net (defproject org.yamlscript/clj-yamlscript "0.1.87" :description diff --git a/clojure/src/yamlscript/core.clj b/clojure/src/yamlscript/core.clj index 5d71aa05e..0aa043d50 100644 --- a/clojure/src/yamlscript/core.clj +++ b/clojure/src/yamlscript/core.clj @@ -1,4 +1,4 @@ -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net ;; This code is licensed under MIT license (See License for details) (ns yamlscript.core diff --git a/common/project.clj b/common/project.clj index 86c478f23..4f91488bf 100644 --- a/common/project.clj +++ b/common/project.clj @@ -1,5 +1,5 @@ ;; This code is licensed under MIT license (See License for details) -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net (defproject yamlscript/docker "0.1.87" :description "Program in YAML — Code is Data" diff --git a/common/readme.md b/common/readme.md index 8ba6fc3bb..c014b9e6e 100644 --- a/common/readme.md +++ b/common/readme.md @@ -110,7 +110,7 @@ file:: "$(ENV.ROOT)/$(ENV.YSLANG)/doc/authors.md" ## License & Copyright -Copyright 2022-2024 Ingy döt Net +Copyright 2022-2025 Ingy döt Net This project is licensed under the terms of the `MIT` license. See [LICENSE](https://github.com/yaml/yamlscript/blob/main/License) for diff --git a/core/doc/yamlscript.md b/core/doc/yamlscript.md index 873bd328c..e6c0b643a 100644 --- a/core/doc/yamlscript.md +++ b/core/doc/yamlscript.md @@ -1020,7 +1020,7 @@ extends the basic functionality of Test::More::YAMLScript. ## Copyright and License -Copyright 2022-2024 by Ingy döt Net +Copyright 2022-2025 by Ingy döt Net This is free software, licensed under: diff --git a/core/project.clj b/core/project.clj index a45ebfa24..fa5067d90 100644 --- a/core/project.clj +++ b/core/project.clj @@ -1,5 +1,5 @@ ;; This code is licensed under MIT license (See License for details) -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net (defproject yamlscript/core "0.1.87" :description "Program in YAML — Code is Data" diff --git a/core/src/a0/patch_pprint.clj b/core/src/a0/patch_pprint.clj index bc822a1f1..0ba295798 100644 --- a/core/src/a0/patch_pprint.clj +++ b/core/src/a0/patch_pprint.clj @@ -1,5 +1,5 @@ ;; This code is licensed under MIT license (See License for details) -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net (ns a0.patch-pprint (:require [clojure.pprint :as pprint])) diff --git a/core/src/yamlscript/ast.clj b/core/src/yamlscript/ast.clj index e54a022bc..c0f69c465 100644 --- a/core/src/yamlscript/ast.clj +++ b/core/src/yamlscript/ast.clj @@ -1,4 +1,4 @@ -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net ;; This code is licensed under MIT license (See License for details) ;; The yamlscript.ast library defines the YAMLScript AST nodes. diff --git a/core/src/yamlscript/builder.clj b/core/src/yamlscript/builder.clj index f6e195ee2..7b2019e22 100644 --- a/core/src/yamlscript/builder.clj +++ b/core/src/yamlscript/builder.clj @@ -1,4 +1,4 @@ -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net ;; This code is licensed under MIT license (See License for details) ;; The yamlscript.builder is responsible parsing all the !expr nodes into diff --git a/core/src/yamlscript/common.clj b/core/src/yamlscript/common.clj index 8c3ba65c6..41da11b0c 100644 --- a/core/src/yamlscript/common.clj +++ b/core/src/yamlscript/common.clj @@ -1,4 +1,4 @@ -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net ;; This code is licensed under MIT license (See License for details) (ns yamlscript.common diff --git a/core/src/yamlscript/compiler.clj b/core/src/yamlscript/compiler.clj index 3c6ec65d5..2b645f9a1 100644 --- a/core/src/yamlscript/compiler.clj +++ b/core/src/yamlscript/compiler.clj @@ -1,4 +1,4 @@ -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net ;; This code is licensed under MIT license (See License for details) ;; YAMLScript is a programming language that is hosted by Clojure platforms. diff --git a/core/src/yamlscript/composer.clj b/core/src/yamlscript/composer.clj index 72cfc6c36..5ff1ea750 100644 --- a/core/src/yamlscript/composer.clj +++ b/core/src/yamlscript/composer.clj @@ -1,4 +1,4 @@ -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net ;; This code is licensed under MIT license (See License for details) ;; The yamlscript.composer is responsible for converting a stream of YAML diff --git a/core/src/yamlscript/constructor.clj b/core/src/yamlscript/constructor.clj index 744cba183..4aa1ade17 100644 --- a/core/src/yamlscript/constructor.clj +++ b/core/src/yamlscript/constructor.clj @@ -1,4 +1,4 @@ -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net ;; This code is licensed under MIT license (See License for details) ;; The yamlscript.constructor is responsible for converting the YAMLScript AST diff --git a/core/src/yamlscript/debug.clj b/core/src/yamlscript/debug.clj index 618da844d..e30523784 100644 --- a/core/src/yamlscript/debug.clj +++ b/core/src/yamlscript/debug.clj @@ -1,4 +1,4 @@ -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net ;; This code is licensed under MIT license (See License for details) ;; The yamlscript.debug library defines a set of Clojure debugging functions. diff --git a/core/src/yamlscript/global.clj b/core/src/yamlscript/global.clj index 30724cc34..72d6014bf 100644 --- a/core/src/yamlscript/global.clj +++ b/core/src/yamlscript/global.clj @@ -1,4 +1,4 @@ -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net ;; This code is licensed under MIT license (See License for details) (ns yamlscript.global diff --git a/core/src/yamlscript/parser.clj b/core/src/yamlscript/parser.clj index b10f53a6d..46757d5c4 100644 --- a/core/src/yamlscript/parser.clj +++ b/core/src/yamlscript/parser.clj @@ -1,4 +1,4 @@ -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net ;; This code is licensed under MIT license (See License for details) ;; The yamlscript.parser is responsible for parsing YAML into a sequence of diff --git a/core/src/yamlscript/printer.clj b/core/src/yamlscript/printer.clj index 7ce9b09f0..4667bd6d8 100644 --- a/core/src/yamlscript/printer.clj +++ b/core/src/yamlscript/printer.clj @@ -1,4 +1,4 @@ -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net ;; This code is licensed under MIT license (See License for details) ;; The yamlscript.printer is responsible for serializing YAMLScript Clojure AST diff --git a/core/src/yamlscript/re.clj b/core/src/yamlscript/re.clj index 74878643b..3b9bf3223 100644 --- a/core/src/yamlscript/re.clj +++ b/core/src/yamlscript/re.clj @@ -1,4 +1,4 @@ -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net ;; This code is licensed under MIT license (See License for details) ;; The yamlscript.re library defines the regex parts that are used to match diff --git a/core/src/yamlscript/resolver.clj b/core/src/yamlscript/resolver.clj index 1edb0df16..b23e6030f 100644 --- a/core/src/yamlscript/resolver.clj +++ b/core/src/yamlscript/resolver.clj @@ -1,4 +1,4 @@ -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net ;; This code is licensed under MIT license (See License for details) ;; The yamlscript.resolver is responsible for tagging each node in the YAML diff --git a/core/src/yamlscript/runtime.clj b/core/src/yamlscript/runtime.clj index 5986b7c21..958b33f67 100644 --- a/core/src/yamlscript/runtime.clj +++ b/core/src/yamlscript/runtime.clj @@ -1,4 +1,4 @@ -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net ;; This code is licensed under MIT license (See License for details) (ns yamlscript.runtime diff --git a/core/src/yamlscript/transformer.clj b/core/src/yamlscript/transformer.clj index a64166461..be4c68be0 100644 --- a/core/src/yamlscript/transformer.clj +++ b/core/src/yamlscript/transformer.clj @@ -1,4 +1,4 @@ -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net ;; This code is licensed under MIT license (See License for details) ;; The yamlscript.transformer is responsible for transforming the YAMLScript AST diff --git a/core/src/yamlscript/transformers.clj b/core/src/yamlscript/transformers.clj index c910d8979..2551d84fa 100644 --- a/core/src/yamlscript/transformers.clj +++ b/core/src/yamlscript/transformers.clj @@ -1,4 +1,4 @@ -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net ;; This code is licensed under MIT license (See License for details) (ns yamlscript.transformers diff --git a/core/src/yamlscript/util.clj b/core/src/yamlscript/util.clj index 8fc8090df..c1f10ab49 100644 --- a/core/src/yamlscript/util.clj +++ b/core/src/yamlscript/util.clj @@ -1,4 +1,4 @@ -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net ;; This code is licensed under MIT license (See License for details) (ns yamlscript.util) diff --git a/core/src/yamlscript/ysreader.clj b/core/src/yamlscript/ysreader.clj index 7cf2e3eb9..0d24a4e24 100644 --- a/core/src/yamlscript/ysreader.clj +++ b/core/src/yamlscript/ysreader.clj @@ -1,4 +1,4 @@ -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net ;; This code is licensed under MIT license (See License for details) ;; The yamlscript.ysreader is responsible for reading YAMLScript ysexpr (yes diff --git a/core/src/ys/clj.clj b/core/src/ys/clj.clj index 0aa1710d2..778ed4835 100644 --- a/core/src/ys/clj.clj +++ b/core/src/ys/clj.clj @@ -1,4 +1,4 @@ -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net ;; This code is licensed under MIT license (See License for details) ;; This library contains the clojure.core functions that are replaced by the diff --git a/core/src/ys/dwim.clj b/core/src/ys/dwim.clj index cd3233d86..b2cca2e72 100644 --- a/core/src/ys/dwim.clj +++ b/core/src/ys/dwim.clj @@ -1,4 +1,4 @@ -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net ;; This code is licensed under MIT license (See License for details) (ns ys.dwim diff --git a/core/src/ys/json.clj b/core/src/ys/json.clj index b406d1fb7..a8aa8d35d 100644 --- a/core/src/ys/json.clj +++ b/core/src/ys/json.clj @@ -1,4 +1,4 @@ -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net ;; This code is licensed under MIT license (See License for details) (ns ys.json diff --git a/core/src/ys/std.clj b/core/src/ys/std.clj index 1436b2746..633205fb1 100644 --- a/core/src/ys/std.clj +++ b/core/src/ys/std.clj @@ -1,4 +1,4 @@ -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net ;; This code is licensed under MIT license (See License for details) ;; This is the YAMLScript standard library. diff --git a/core/src/ys/yaml.clj b/core/src/ys/yaml.clj index 60d91a1b9..b1a5a9495 100644 --- a/core/src/ys/yaml.clj +++ b/core/src/ys/yaml.clj @@ -1,4 +1,4 @@ -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net ;; This code is licensed under MIT license (See License for details) (ns ys.yaml diff --git a/core/src/ys/ys.clj b/core/src/ys/ys.clj index 906f4b312..bd37ba4b2 100644 --- a/core/src/ys/ys.clj +++ b/core/src/ys/ys.clj @@ -1,4 +1,4 @@ -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net ;; This code is licensed under MIT license (See License for details) (ns ys.ys diff --git a/core/test/compiler-stack.yaml b/core/test/compiler-stack.yaml index 7d68bbf8a..1e2fca1a7 100644 --- a/core/test/compiler-stack.yaml +++ b/core/test/compiler-stack.yaml @@ -1,4 +1,4 @@ -# Copyright 2023-2024 Ingy dot Net +# Copyright 2023-2025 Ingy dot Net # This code is licensed under MIT license (See License for details) - name: Test label / description diff --git a/core/test/compiler.yaml b/core/test/compiler.yaml index 114fac3c2..dfd0bcb28 100644 --- a/core/test/compiler.yaml +++ b/core/test/compiler.yaml @@ -1,4 +1,4 @@ -# Copyright 2023-2024 Ingy dot Net +# Copyright 2023-2025 Ingy dot Net # This code is licensed under MIT license (See License for details) - name: Test label / description diff --git a/core/test/data-mode.yaml b/core/test/data-mode.yaml index 5434c9e62..3a70bb4e7 100644 --- a/core/test/data-mode.yaml +++ b/core/test/data-mode.yaml @@ -1,4 +1,4 @@ -# Copyright 2023-2024 Ingy dot Net +# Copyright 2023-2025 Ingy dot Net # This code is licensed under MIT license (See License for details) - name: data-mode mapping diff --git a/core/test/resolver.yaml b/core/test/resolver.yaml index 24f0735b9..23725dbda 100644 --- a/core/test/resolver.yaml +++ b/core/test/resolver.yaml @@ -1,4 +1,4 @@ -# Copyright 2023-2024 Ingy dot Net +# Copyright 2023-2025 Ingy dot Net # This code is licensed under MIT license (See License for details) - name: YAML 1.2 core schema diff --git a/core/test/runtime.yaml b/core/test/runtime.yaml index 04bebee7e..24d9ef2ba 100644 --- a/core/test/runtime.yaml +++ b/core/test/runtime.yaml @@ -1,4 +1,4 @@ -# Copyright 2023-2024 Ingy dot Net +# Copyright 2023-2025 Ingy dot Net # This code is licensed under MIT license (See License for details) diff --git a/core/test/transformer.yaml b/core/test/transformer.yaml index 4192e0302..e16c40e40 100644 --- a/core/test/transformer.yaml +++ b/core/test/transformer.yaml @@ -1,4 +1,4 @@ -# Copyright 2023-2024 Ingy dot Net +# Copyright 2023-2025 Ingy dot Net # This code is licensed under MIT license (See License for details) - name: require simple library diff --git a/core/test/yamlscript/builder_test.clj b/core/test/yamlscript/builder_test.clj index 1c23ff4bf..571991fec 100644 --- a/core/test/yamlscript/builder_test.clj +++ b/core/test/yamlscript/builder_test.clj @@ -1,4 +1,4 @@ -; Copyright 2023-2024 Ingy dot Net +; Copyright 2023-2025 Ingy dot Net ; This code is licensed under MIT license (See License for details) (ns yamlscript.builder-test diff --git a/core/test/yamlscript/compiler_test.clj b/core/test/yamlscript/compiler_test.clj index 100423809..222c91564 100644 --- a/core/test/yamlscript/compiler_test.clj +++ b/core/test/yamlscript/compiler_test.clj @@ -1,4 +1,4 @@ -; Copyright 2023-2024 Ingy dot Net +; Copyright 2023-2025 Ingy dot Net ; This code is licensed under MIT license (See License for details) (ns yamlscript.compiler-test diff --git a/core/test/yamlscript/composer_test.clj b/core/test/yamlscript/composer_test.clj index ebbdc2e47..59ce9425b 100644 --- a/core/test/yamlscript/composer_test.clj +++ b/core/test/yamlscript/composer_test.clj @@ -1,4 +1,4 @@ -; Copyright 2023-2024 Ingy dot Net +; Copyright 2023-2025 Ingy dot Net ; This code is licensed under MIT license (See License for details) (ns yamlscript.composer-test diff --git a/core/test/yamlscript/constructor_test.clj b/core/test/yamlscript/constructor_test.clj index facffeecb..d0e355065 100644 --- a/core/test/yamlscript/constructor_test.clj +++ b/core/test/yamlscript/constructor_test.clj @@ -1,4 +1,4 @@ -; Copyright 2023-2024 Ingy dot Net +; Copyright 2023-2025 Ingy dot Net ; This code is licensed under MIT license (See License for details) (ns yamlscript.constructor-test diff --git a/core/test/yamlscript/parser_test.clj b/core/test/yamlscript/parser_test.clj index 806849a25..29420b7d8 100644 --- a/core/test/yamlscript/parser_test.clj +++ b/core/test/yamlscript/parser_test.clj @@ -1,4 +1,4 @@ -; Copyright 2023-2024 Ingy dot Net +; Copyright 2023-2025 Ingy dot Net ; This code is licensed under MIT license (See License for details) (ns yamlscript.parser-test diff --git a/core/test/yamlscript/printer_test.clj b/core/test/yamlscript/printer_test.clj index feb59983b..dbc9dbbad 100644 --- a/core/test/yamlscript/printer_test.clj +++ b/core/test/yamlscript/printer_test.clj @@ -1,4 +1,4 @@ -; Copyright 2023-2024 Ingy dot Net +; Copyright 2023-2025 Ingy dot Net ; This code is licensed under MIT license (See License for details) (ns yamlscript.printer-test diff --git a/core/test/yamlscript/resolver_test.clj b/core/test/yamlscript/resolver_test.clj index eadb8d143..19a4253e5 100644 --- a/core/test/yamlscript/resolver_test.clj +++ b/core/test/yamlscript/resolver_test.clj @@ -1,4 +1,4 @@ -; Copyright 2023-2024 Ingy dot Net +; Copyright 2023-2025 Ingy dot Net ; This code is licensed under MIT license (See License for details) (ns yamlscript.resolver-test diff --git a/core/test/yamlscript/runtime_test.clj b/core/test/yamlscript/runtime_test.clj index bb4ba20b7..670a20a00 100644 --- a/core/test/yamlscript/runtime_test.clj +++ b/core/test/yamlscript/runtime_test.clj @@ -1,4 +1,4 @@ -; Copyright 2023-2024 Ingy dot Net +; Copyright 2023-2025 Ingy dot Net ; This code is licensed under MIT license (See License for details) (ns yamlscript.runtime-test diff --git a/core/test/yamlscript/test_runner.clj b/core/test/yamlscript/test_runner.clj index d54307a6b..4308865de 100644 --- a/core/test/yamlscript/test_runner.clj +++ b/core/test/yamlscript/test_runner.clj @@ -1,5 +1,5 @@ ;; This code is licensed under MIT license (See License for details) -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net (ns yamlscript.test-runner (:require diff --git a/core/test/yamlscript/transformer_test.clj b/core/test/yamlscript/transformer_test.clj index d0ac17328..2057a3b20 100644 --- a/core/test/yamlscript/transformer_test.clj +++ b/core/test/yamlscript/transformer_test.clj @@ -1,4 +1,4 @@ -; Copyright 2023-2024 Ingy dot Net +; Copyright 2023-2025 Ingy dot Net ; This code is licensed under MIT license (See License for details) (ns yamlscript.transformer-test diff --git a/d/dub.json b/d/dub.json index 8f8ccc269..09b5f2953 100644 --- a/d/dub.json +++ b/d/dub.json @@ -2,7 +2,7 @@ "authors": [ "ingy" ], - "copyright": "Copyright 2022-2024, Ingy döt Net", + "copyright": "Copyright 2022-2025, Ingy döt Net", "description": "Program in YAML — Code is Data", "license": "MIT", "name": "yamlscript" diff --git a/elixir/README.md b/elixir/README.md index 544e3c674..e494ab7f6 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -33,7 +33,7 @@ This is very ALPHA software. ## Copyright and License -Copyright 2022-2024 by Ingy döt Net +Copyright 2022-2025 by Ingy döt Net This is free software, licensed under: diff --git a/go/ReadMe.md b/go/ReadMe.md index 66b972f27..855e9c461 100644 --- a/go/ReadMe.md +++ b/go/ReadMe.md @@ -179,7 +179,7 @@ Please open an issue on this repository or chat with us directly at ## License & Copyright -Copyright 2022-2024 Ingy döt Net +Copyright 2022-2025 Ingy döt Net This project is licensed under the terms of the `MIT` license. See [LICENSE](https://github.com/yaml/yamlscript/blob/main/License) for diff --git a/java/src/main/java/org/yamlscript/yamlscript/LibYAMLScript.java b/java/src/main/java/org/yamlscript/yamlscript/LibYAMLScript.java index 2d710e201..8fa7b5202 100644 --- a/java/src/main/java/org/yamlscript/yamlscript/LibYAMLScript.java +++ b/java/src/main/java/org/yamlscript/yamlscript/LibYAMLScript.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Ingy dot Net +// Copyright 2023-2025 Ingy dot Net // This code is licensed under MIT license (See License for details) package org.yamlscript.yamlscript; diff --git a/julia/LICENSE b/julia/LICENSE index 5f5132c51..bb2c93731 100644 --- a/julia/LICENSE +++ b/julia/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2022-2024 Ingy döt Net and contributors +Copyright (c) 2022-2025 Ingy döt Net 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 deal diff --git a/julia/ReadMe.md b/julia/ReadMe.md index 9d37fb8c3..ad8a74e97 100644 --- a/julia/ReadMe.md +++ b/julia/ReadMe.md @@ -169,7 +169,7 @@ See https://github.com/yaml/yamlscript?#installing-yamlscript for more info. ## License & Copyright -Copyright 2022-2024 Ingy döt Net +Copyright 2022-2025 Ingy döt Net This project is licensed under the terms of the `MIT` license. See [LICENSE](https://github.com/yaml/yamlscript/blob/main/License) for diff --git a/libyamlscript/project.clj b/libyamlscript/project.clj index dd696895a..17f4a2eb2 100644 --- a/libyamlscript/project.clj +++ b/libyamlscript/project.clj @@ -1,5 +1,5 @@ ;; This code is licensed under MIT license (See License for details) -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net (defproject yamlscript/libyamlscript "0.1.87" :description "Shared Library for YAMLScript" diff --git a/libyamlscript/src/libyamlscript/API.java b/libyamlscript/src/libyamlscript/API.java index 0bd05f815..008adf8ef 100644 --- a/libyamlscript/src/libyamlscript/API.java +++ b/libyamlscript/src/libyamlscript/API.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Ingy dot Net +// Copyright 2023-2025 Ingy dot Net // This code is licensed under MIT license (See License for details) package libyamlscript; diff --git a/libyamlscript/src/libyamlscript/core.clj b/libyamlscript/src/libyamlscript/core.clj index 267259f63..332e069aa 100644 --- a/libyamlscript/src/libyamlscript/core.clj +++ b/libyamlscript/src/libyamlscript/core.clj @@ -1,4 +1,4 @@ -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net ;; This code is licensed under MIT license (See License for details) ;; This library compiles into the `libyamlscript.so` shared library. diff --git a/nodejs/ReadMe.md b/nodejs/ReadMe.md index 97e84932d..263d7e420 100644 --- a/nodejs/ReadMe.md +++ b/nodejs/ReadMe.md @@ -191,7 +191,7 @@ See https://github.com/yaml/yamlscript/wiki/Installing-YAMLScript for more info. ## License & Copyright -Copyright 2022-2024 Ingy döt Net +Copyright 2022-2025 Ingy döt Net This project is licensed under the terms of the `MIT` license. See [LICENSE](https://github.com/yaml/yamlscript/blob/main/License) for diff --git a/perl-alien/doc/Alien/YAMLScript.md b/perl-alien/doc/Alien/YAMLScript.md index 3513eabcc..04a0e59d3 100644 --- a/perl-alien/doc/Alien/YAMLScript.md +++ b/perl-alien/doc/Alien/YAMLScript.md @@ -46,7 +46,7 @@ entrypoint. ## Copyright and License -Copyright 2022-2024 by Ingy döt Net +Copyright 2022-2025 by Ingy döt Net This is free software, licensed under: diff --git a/perl/doc/YAMLScript.md b/perl/doc/YAMLScript.md index 9f587f090..c77ff06e5 100644 --- a/perl/doc/YAMLScript.md +++ b/perl/doc/YAMLScript.md @@ -134,7 +134,7 @@ See https://github.com/yaml/yamlscript?#installing-yamlscript for more info. ## License & Copyright -Copyright 2022-2024 Ingy döt Net +Copyright 2022-2025 Ingy döt Net This project is licensed under the terms of the `MIT` license. See [LICENSE](https://github.com/yaml/yamlscript/blob/main/License) for diff --git a/perl/lib/YAMLScript.pm b/perl/lib/YAMLScript.pm index 22922fdc5..70263d50f 100644 --- a/perl/lib/YAMLScript.pm +++ b/perl/lib/YAMLScript.pm @@ -1,4 +1,4 @@ -# Copyright 2023-2024 Ingy dot Net +# Copyright 2023-2025 Ingy dot Net # This code is licensed under MIT license (See License for details) use strict; diff --git a/php/License b/php/License index 116c16245..30c1a1ebc 100644 --- a/php/License +++ b/php/License @@ -1,4 +1,4 @@ -Copyright (c) 2022-2024 Ingy dot Net +Copyright (c) 2022-2025 Ingy dot Net 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/php/ReadMe.md b/php/ReadMe.md index 18098a72d..7d1686bdd 100644 --- a/php/ReadMe.md +++ b/php/ReadMe.md @@ -11,7 +11,7 @@ Program in YAML — Code is Data ## Copyright and License -Copyright 2022-2024 by Ingy döt Net +Copyright 2022-2025 by Ingy döt Net This is free software, licensed under: diff --git a/python/ReadMe.md b/python/ReadMe.md index 6d36cf41d..a2a5bec63 100644 --- a/python/ReadMe.md +++ b/python/ReadMe.md @@ -167,7 +167,7 @@ See https://github.com/yaml/yamlscript?#installing-yamlscript for more info. ## License & Copyright -Copyright 2022-2024 Ingy döt Net +Copyright 2022-2025 Ingy döt Net This project is licensed under the terms of the `MIT` license. See [LICENSE](https://github.com/yaml/yamlscript/blob/main/License) for diff --git a/python/lib/yamlscript/__init__.py b/python/lib/yamlscript/__init__.py index 89ff7bd24..1fc2dc8f9 100644 --- a/python/lib/yamlscript/__init__.py +++ b/python/lib/yamlscript/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2023-2024 Ingy dot Net +# Copyright 2023-2025 Ingy dot Net # This code is licensed under MIT license (See License for details) """ diff --git a/raku/README.md b/raku/README.md index 068a83f16..9c613a591 100644 --- a/raku/README.md +++ b/raku/README.md @@ -132,7 +132,7 @@ See https://github.com/yaml/yamlscript?#installing-yamlscript for more info. ## License & Copyright -Copyright 2022-2024 Ingy döt Net +Copyright 2022-2025 Ingy döt Net This project is licensed under the terms of the `MIT` license. See [LICENSE](https://github.com/yaml/yamlscript/blob/main/License) for diff --git a/raku/lib/YAMLScript.rakumod b/raku/lib/YAMLScript.rakumod index 3fb3d385f..3b505ab68 100644 --- a/raku/lib/YAMLScript.rakumod +++ b/raku/lib/YAMLScript.rakumod @@ -1,4 +1,4 @@ -# Copyright 2023-2024 Ingy dot Net +# Copyright 2023-2025 Ingy dot Net # This code is licensed under MIT license (See License for details) unit class YAMLScript; diff --git a/ruby/ReadMe.md b/ruby/ReadMe.md index d916a1606..9f8b63f85 100644 --- a/ruby/ReadMe.md +++ b/ruby/ReadMe.md @@ -168,7 +168,7 @@ See https://github.com/yaml/yamlscript?#installing-yamlscript for more info. ## License & Copyright -Copyright 2022-2024 Ingy döt Net +Copyright 2022-2025 Ingy döt Net This project is licensed under the terms of the `MIT` license. See [LICENSE](https://github.com/yaml/yamlscript/blob/main/License) for diff --git a/ruby/lib/yamlscript.rb b/ruby/lib/yamlscript.rb index 000e6180a..3370341ea 100644 --- a/ruby/lib/yamlscript.rb +++ b/ruby/lib/yamlscript.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Copyright 2023-2024 Ingy dot Net +# Copyright 2023-2025 Ingy dot Net # This code is licensed under MIT license (See License for details) require 'fiddle' diff --git a/rust/ReadMe.md b/rust/ReadMe.md index 6b48ba1ba..0a880d88d 100644 --- a/rust/ReadMe.md +++ b/rust/ReadMe.md @@ -188,7 +188,7 @@ See https://github.com/yaml/yamlscript/wiki/Installing-YAMLScript for more info. ## License & Copyright -Copyright 2022-2024 Ingy döt Net +Copyright 2022-2025 Ingy döt Net This project is licensed under the terms of the `MIT` license. See [LICENSE](https://github.com/yaml/yamlscript/blob/main/License) for diff --git a/www/src/santa-secrets.md b/www/src/santa-secrets.md deleted file mode 100644 index e8641ca90..000000000 --- a/www/src/santa-secrets.md +++ /dev/null @@ -1,48 +0,0 @@ -

 

-
Santa's little secrets... - -In December 2023 YAMLScript is a work in progress. - -This is not to say that it's a toy proof of concept. -It has a working compiler, runtime and CLI. -It has unit tests that must pass for every commit pushed to the main branch. -It's well thought out and has a clear direction that I continually vet with a -small group of talented and trusted people. -It has regular [releases](https://github.com/yaml/yamlscript/releases). - -But that in turn not to say that you should use it in production today. -I encourage you to start playing with it, and I'm committed to backwards -compatibility for stable releases. -But we're not quite there yet. -Caveat usor! - -YAMLScript is evolving fast. -While I'm writing these posts, I'm also writing the code for new features and -fixing bugs as I go. -I've had the Advent plan for over a month now, and I had planned to be further -along before December 1st, but such are the time estimates of hackers. - -I am attempting to make sure that the code examples in these posts are always -using the implemented features, but sometimes I may fall a few hours behind. -Often I need to write the examples using code patterns that actually work but -are not the ones I preferred to best make a point. - -As I fix bugs, implement features and tweak the language, I will update the -posts accordingly. -If you see something that bugs you, try taking another look after a few days. -It probably bugged me too! - -Be patient with me. - -If I had to guess, I'd say that YAMLScript v0 will be have a stable release -sometime before March 2024. -I'll continue blogging the progress as I go, so it shouldn't be hard for you to -decide when to start using YAMLScript for real. - -Overall the whole thing is going extremely well, and I'm having a lot of fun. -It's important to be transparent with you about where things are at. - -Stick with me... This is going to be awesome! - -— Ingy döt Net -
diff --git a/yamltest/src/yamltest/core.clj b/yamltest/src/yamltest/core.clj index 9b4d2e5bd..d19e777bf 100644 --- a/yamltest/src/yamltest/core.clj +++ b/yamltest/src/yamltest/core.clj @@ -1,4 +1,4 @@ -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net ;; This code is licensed under MIT license (See License for details) ;; The yamltest.core library defines a yaml based testing framework that is diff --git a/ys/project.clj b/ys/project.clj index 925da1824..aae1016c2 100644 --- a/ys/project.clj +++ b/ys/project.clj @@ -1,5 +1,5 @@ ;; This code is licensed under MIT license (See License for details) -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net (defproject yamlscript.cli "0.1.87-SNAPSHOT" :description "YAMLScript Command Line Tool" diff --git a/ys/src/yamlscript/cli.clj b/ys/src/yamlscript/cli.clj index 96bb80c42..ef7d9b24c 100644 --- a/ys/src/yamlscript/cli.clj +++ b/ys/src/yamlscript/cli.clj @@ -1,4 +1,4 @@ -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net ;; This code is licensed under MIT license (See License for details) ;; The yamlscript.cli library compiles into the `ys` command line binary for diff --git a/ys/test/yamlscript/cli_test.clj b/ys/test/yamlscript/cli_test.clj index 119ffb84f..cfbb2cdbe 100644 --- a/ys/test/yamlscript/cli_test.clj +++ b/ys/test/yamlscript/cli_test.clj @@ -1,4 +1,4 @@ -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net ;; This code is licensed under MIT license (See License for details) (ns yamlscript.cli-test diff --git a/ys/test/yamlscript/test.clj b/ys/test/yamlscript/test.clj index b15ffe148..664d23ad9 100644 --- a/ys/test/yamlscript/test.clj +++ b/ys/test/yamlscript/test.clj @@ -1,4 +1,4 @@ -;; Copyright 2023-2024 Ingy dot Net +;; Copyright 2023-2025 Ingy dot Net ;; This code is licensed under MIT license (See License for details) (ns yamlscript.test