Skip to content

Commit 306e09a

Browse files
committed
Update license. [ci skip]
1 parent 4446d6d commit 306e09a

File tree

2 files changed

+34
-25
lines changed

2 files changed

+34
-25
lines changed

.github/workflows/CompatHelper.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,15 @@ jobs:
88
CompatHelper:
99
runs-on: ubuntu-latest
1010
steps:
11+
- name: Get Julia compatibility
12+
id: julia_compat
13+
# NOTE: this requires a julia compat lower-bound with minor version!
14+
run : |
15+
version=$(grep '^julia = ' Project.toml | grep -o '".*"' | cut -d '"' -f2)
16+
echo "::set-output name=version::$version"
1117
- uses: julia-actions/setup-julia@latest
1218
with:
13-
version: 1.3
19+
version: ${{ steps.julia_compat.outputs.version }}
1420
- name: Pkg.add("CompatHelper")
1521
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
1622
- name: CompatHelper.main()

LICENSE.md

Lines changed: 27 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,28 @@
1-
Copyright © 2016-2018 Tim Besard, and other contributors
1+
The LLVM.jl package is licensed under the University of Illinois/NCSA Open Source License:
22

3-
All Rights Reserved.
4-
5-
Permission is hereby granted, free of charge, to any person obtaining a copy of this
6-
software and associated documentation files (the "Software"), to deal with the Software
7-
without restriction, including without limitation the rights to use, copy, modify, merge,
8-
publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
9-
to whom the Software is furnished to do so, subject to the following conditions:
10-
11-
* Redistributions of source code must retain the above copyright notice, this list of
12-
conditions and the following disclaimers.
13-
* Redistributions in binary form must reproduce the above copyright notice, this list of
14-
conditions and the following disclaimers in the documentation and/or other materials
15-
provided with the distribution.
16-
* Neither the names of the LLVM Team, University of Illinois at Urbana-Champaign, nor the
17-
names of its contributors may be used to endorse or promote products derived from this
18-
Software without specific prior written permission.
19-
20-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
21-
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
22-
PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE CONTRIBUTORS OR COPYRIGHT HOLDERS BE
23-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
24-
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
25-
DEALINGS WITH THE SOFTWARE.
3+
> Copyright (c) 2019-2020: Julia Computing and other contributors
4+
> Copyright (c) 2016-2018: Tim Besard
5+
>
6+
> All Rights Reserved.
7+
>
8+
> Permission is hereby granted, free of charge, to any person obtaining a copy of this
9+
> software and associated documentation files (the "Software"), to deal with the Software
10+
> without restriction, including without limitation the rights to use, copy, modify, merge,
11+
> publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
12+
> to whom the Software is furnished to do so, subject to the following conditions:
13+
>
14+
> * Redistributions of source code must retain the above copyright notice, this list of
15+
> conditions and the following disclaimers.
16+
> * Redistributions in binary form must reproduce the above copyright notice, this list of
17+
> conditions and the following disclaimers in the documentation and/or other materials
18+
> provided with the distribution.
19+
> * Neither the names of the LLVM Team, University of Illinois at Urbana-Champaign, nor the
20+
> names of its contributors may be used to endorse or promote products derived from this
21+
> Software without specific prior written permission.
22+
>
23+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
24+
> INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
25+
> PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE CONTRIBUTORS OR COPYRIGHT HOLDERS BE
26+
> LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
27+
> OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
28+
> DEALINGS WITH THE SOFTWARE.

0 commit comments

Comments
 (0)