From df1464d944a6e69ecc542c6b679c4417407f841e Mon Sep 17 00:00:00 2001 From: Shuhei Kadowaki Date: Fri, 15 Nov 2024 01:02:51 +0900 Subject: [PATCH] add LICENSE.md and `[compat]` entry for the Compiler.jl stdlib As requested [by JuliaRegistrator](https://github.com/JuliaRegistries/General/pull/119404#issuecomment-2476778171). --- Compiler/LICENSE.md | 26 ++++++++++++++++++++++++++ Compiler/Project.toml | 3 +++ 2 files changed, 29 insertions(+) create mode 100644 Compiler/LICENSE.md diff --git a/Compiler/LICENSE.md b/Compiler/LICENSE.md new file mode 100644 index 0000000000000..028a39923ef04 --- /dev/null +++ b/Compiler/LICENSE.md @@ -0,0 +1,26 @@ +MIT License + +Copyright (c) 2009-2024: Jeff Bezanson, Stefan Karpinski, Viral B. Shah, and other contributors: https://github.com/JuliaLang/julia/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 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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +end of terms and conditions + +Please see [THIRDPARTY.md](../THIRDPARTY.md) for license information for other software used in this project. diff --git a/Compiler/Project.toml b/Compiler/Project.toml index 19ba8f7529c1a..9cb85fe7d05de 100644 --- a/Compiler/Project.toml +++ b/Compiler/Project.toml @@ -1,3 +1,6 @@ name = "Compiler" uuid = "807dbc54-b67e-4c79-8afb-eafe4df6f2e1" version = "0.0.2" + +[compat] +julia = "1.10"