aboutsummaryrefslogtreecommitdiff
path: root/core/compress
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2025-11-04 13:53:13 +0000
committerGitHub <noreply@github.com>2025-11-04 13:53:13 +0000
commite5153a937b95f4583dfac2c22d010a764bf2f1a8 (patch)
treec9dc3a80eeff8216f42d9760393e1753cf037820 /core/compress
parentfd995050dd80df6bea156ce59b594c8a6d1e677a (diff)
parent4bdce9bf0aba062d39e838bdf945bca5984f3c85 (diff)
Merge pull request #5859 from odin-lang/bill/change-licensedev-2025-11
Change Odin's LICENSE to zlib from BSD 3-clause
Diffstat (limited to 'core/compress')
-rw-r--r--core/compress/common.odin2
-rw-r--r--core/compress/gzip/doc.odin2
-rw-r--r--core/compress/gzip/gzip.odin2
-rw-r--r--core/compress/shoco/shoco.odin2
-rw-r--r--core/compress/zlib/doc.odin2
-rw-r--r--core/compress/zlib/zlib.odin2
6 files changed, 6 insertions, 6 deletions
diff --git a/core/compress/common.odin b/core/compress/common.odin
index 796a60071..39aa1ca72 100644
--- a/core/compress/common.odin
+++ b/core/compress/common.odin
@@ -3,7 +3,7 @@ package compress
/*
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
- Made available under Odin's BSD-3 license.
+ Made available under Odin's license.
List of contributors:
Jeroen van Rijn: Initial implementation, optimization.
diff --git a/core/compress/gzip/doc.odin b/core/compress/gzip/doc.odin
index 18f2259cb..c20ebc33a 100644
--- a/core/compress/gzip/doc.odin
+++ b/core/compress/gzip/doc.odin
@@ -82,7 +82,7 @@ package compress_gzip
/*
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
- Made available under Odin's BSD-3 license.
+ Made available under Odin's license.
List of contributors:
Jeroen van Rijn: Initial implementation.
diff --git a/core/compress/gzip/gzip.odin b/core/compress/gzip/gzip.odin
index 57ed3c3c5..7dc8120e4 100644
--- a/core/compress/gzip/gzip.odin
+++ b/core/compress/gzip/gzip.odin
@@ -2,7 +2,7 @@ package compress_gzip
/*
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
- Made available under Odin's BSD-3 license.
+ Made available under Odin's license.
List of contributors:
Jeroen van Rijn: Initial implementation.
diff --git a/core/compress/shoco/shoco.odin b/core/compress/shoco/shoco.odin
index be079df19..b112ddb04 100644
--- a/core/compress/shoco/shoco.odin
+++ b/core/compress/shoco/shoco.odin
@@ -3,7 +3,7 @@ package compress_shoco
/*
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
- Made available under Odin's BSD-3 license.
+ Made available under Odin's license.
List of contributors:
Jeroen van Rijn: Initial implementation.
diff --git a/core/compress/zlib/doc.odin b/core/compress/zlib/doc.odin
index 6923c2a60..8dac17587 100644
--- a/core/compress/zlib/doc.odin
+++ b/core/compress/zlib/doc.odin
@@ -44,7 +44,7 @@ package compress_zlib
/*
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
- Made available under Odin's BSD-3 license.
+ Made available under Odin's license.
List of contributors:
Jeroen van Rijn: Initial implementation.
diff --git a/core/compress/zlib/zlib.odin b/core/compress/zlib/zlib.odin
index be8a7d7d3..b9189c1f1 100644
--- a/core/compress/zlib/zlib.odin
+++ b/core/compress/zlib/zlib.odin
@@ -3,7 +3,7 @@ package compress_zlib
/*
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
- Made available under Odin's BSD-3 license.
+ Made available under Odin's license.
List of contributors:
Jeroen van Rijn: Initial implementation, optimization.