Skip to content

Commit 9f32b35

Browse files
committed
chore: switch license to MIT
1 parent 8002f14 commit 9f32b35

3 files changed

Lines changed: 24 additions & 117 deletions

File tree

LICENSE

Lines changed: 21 additions & 114 deletions
Original file line numberDiff line numberDiff line change
@@ -1,114 +1,21 @@
1-
Apache License
2-
Version 2.0, January 2004
3-
http://www.apache.org/licenses/
4-
5-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6-
7-
1. Definitions.
8-
9-
"License" shall mean the terms and conditions for use, reproduction,
10-
and distribution as defined by Sections 1 through 9 of this document.
11-
12-
"Licensor" shall mean the copyright owner or entity authorized by
13-
the copyright owner that is granting the License.
14-
15-
"Legal Entity" shall mean the union of the acting entity and all
16-
other entities that control, are controlled by, or are under common
17-
control with that entity.
18-
19-
"You" (or "Your") shall mean an individual or Legal Entity
20-
exercising permissions granted by this License.
21-
22-
"Source" form shall mean the preferred form for making modifications,
23-
including but not limited to software source code, documentation
24-
source, and configuration files.
25-
26-
"Object" form shall mean any form resulting from mechanical
27-
transformation or translation of a Source form, including but
28-
not limited to compiled object code, generated documentation,
29-
and conversions to other media types.
30-
31-
"Work" shall mean the work of authorship made available under
32-
the License, as indicated by a copyright notice that is included in
33-
or attached to the work.
34-
35-
"Derivative Works" shall mean any work, whether in Source or Object
36-
form, that is based on (or derived from) the Work and for which the
37-
editorial revisions, annotations, elaborations, or other modifications
38-
represent, as a whole, an original work of authorship.
39-
40-
"Contribution" shall mean, as submitted to the Licensor for inclusion
41-
in the Work by the copyright owner or by an individual or Legal Entity
42-
authorized to submit on behalf of the copyright owner.
43-
44-
"Contributor" shall mean Licensor and any Legal Entity on behalf of
45-
whom a Contribution has been received by the Licensor and included
46-
within the Work.
47-
48-
2. Grant of Copyright License. Subject to the terms and conditions of
49-
this License, each Contributor hereby grants to You a perpetual,
50-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
51-
copyright license to reproduce, prepare Derivative Works of,
52-
publicly display, publicly perform, sublicense, and distribute the
53-
Work and such Derivative Works in Source or Object form.
54-
55-
3. Grant of Patent License. Subject to the terms and conditions of
56-
this License, each Contributor hereby grants to You a perpetual,
57-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
58-
patent license to make, use, sell, offer for sale, import, and
59-
otherwise transfer the Work.
60-
61-
4. Redistribution. You may reproduce and distribute copies of the
62-
Work or Derivative Works thereof in any medium, with or without
63-
modifications, and in Source or Object form, provided that You
64-
meet the following conditions:
65-
66-
(a) You must give any other recipients of the Work or Derivative
67-
Works a copy of this License; and
68-
69-
(b) You must cause any modified files to carry prominent notices
70-
stating that You changed the files; and
71-
72-
(c) You must retain, in the Source form of any Derivative Works
73-
that You distribute, all copyright, patent, trademark, and
74-
attribution notices from the Source form of the Work; and
75-
76-
(d) If the Work includes a "NOTICE" text file, you must include a
77-
readable copy of the attribution notices contained within such
78-
NOTICE file.
79-
80-
5. Submission of Contributions. Unless You explicitly state otherwise,
81-
any Contribution submitted for inclusion in the Work shall be under
82-
the terms and conditions of this License.
83-
84-
6. Trademarks. This License does not grant permission to use the trade
85-
names, trademarks, service marks, or product names of the Licensor.
86-
87-
7. Disclaimer of Warranty. Unless required by applicable law or
88-
agreed to in writing, Licensor provides the Work on an "AS IS"
89-
BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND.
90-
91-
8. Limitation of Liability. In no event and under no legal theory
92-
shall any Contributor be liable for any damages arising from this
93-
Work, even if such Contributor has been advised of the possibility
94-
of such damage.
95-
96-
9. Accepting Warranty or Additional Liability. While redistributing
97-
the Work, You may offer acceptance of support, warranty, indemnity,
98-
or other liability obligations consistent with this License.
99-
100-
END OF TERMS AND CONDITIONS
101-
102-
Copyright 2026 Yaad Contributors
103-
104-
Licensed under the Apache License, Version 2.0 (the "License");
105-
you may not use this file except in compliance with the License.
106-
You may obtain a copy of the License at
107-
108-
http://www.apache.org/licenses/LICENSE-2.0
109-
110-
Unless required by applicable law or agreed to in writing, software
111-
distributed under the License is distributed on an "AS IS" BASIS,
112-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
113-
See the License for the specific language governing permissions and
114-
limitations under the License.
1+
MIT License
2+
3+
Copyright (c) 2026 GrayCodeAI
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

PLAN.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -939,7 +939,7 @@ yaad/
939939
├── go.mod
940940
├── go.sum
941941
├── Makefile
942-
└── LICENSE # Apache-2.0
942+
└── LICENSE # MIT
943943
```
944944

945945
## Roadmap
@@ -1062,4 +1062,4 @@ See [COMPARISON.md](COMPARISON.md) for full feature matrix against 8 OSS project
10621062

10631063
## License
10641064

1065-
Apache-2.0
1065+
MIT

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,4 +270,4 @@ watch = true
270270

271271
## License
272272

273-
Apache-2.0
273+
MIT

0 commit comments

Comments
 (0)