Skip to content

Commit 253dbf0

Browse files
committed
Version 3.0.0
1 parent 09253e4 commit 253dbf0

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# tree_magic_mini 3.0.0
2+
3+
* Split GPL-licensed files into a separate optional dependency. The main crate
4+
is now MIT-licensed, and searches for data files installed on the system at
5+
run-time by default.
6+
7+
If you enable the `with-gpl-data` feature, then the data files will be
8+
hard-coded into the library at compile time. Programs that use this feature
9+
must be distributed according to the terms of the GNU GPL 2.0 or later.
10+
111
# tree_magic_mini 2.0.0
212

313
* Change license to GPL-2.0-or-later for compatibility with upstream

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tree_magic_mini"
3-
version = "2.0.0"
3+
version = "3.0.0"
44
authors = [
55
"Matt Brubeck <mbrubeck@limpet.net>",
66
"Allison Hancock <aahancoc@umich.edu>",
@@ -20,7 +20,7 @@ nom = "6.0"
2020
lazy_static = "^1.4"
2121
fnv = "^1"
2222
once_cell = "^1"
23-
tree_magic_db = { path = "./magic_db" , optional = true }
23+
tree_magic_db = { version = "3", path = "./magic_db" , optional = true }
2424

2525
[features]
2626
with-gpl-data = ["tree_magic_db"]

magic_db/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tree_magic_db"
3-
version = "1.0.0"
3+
version = "3.0.0"
44
authors = ["Richard Bradfield <bradfier@fstab.me>"]
55
description = "Packages the FreeDesktop.org shared MIME database for optional use with tree_magic_mini"
66
license = "GPL-2.0-or-later"

0 commit comments

Comments
 (0)