From 78e8146a7d58cbd7a081e6ab608aef2d861bdb02 Mon Sep 17 00:00:00 2001 From: Jack Cherng Date: Fri, 22 Mar 2024 16:05:40 +0800 Subject: [PATCH] release: 4.0.2 Signed-off-by: Jack Cherng --- CHANGELOG.md | 6 ++++++ plugin/constants.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c6dff7b2..62cfdd94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # AutoSetSyntax Changelog +## 4.0.2 + +- chore: add more Magika file types +- chore: provide more precise matched reason +- refactor: remove more Node.js related things + ## 4.0.1 - refactor: expose `ViewSnapshot` in `AutoSetSyntax.plugin` diff --git a/plugin/constants.py b/plugin/constants.py index 12f0848f..7a0d3a15 100644 --- a/plugin/constants.py +++ b/plugin/constants.py @@ -10,7 +10,7 @@ ################################################################################ -VERSION_INFO = (2, 11, 18) +VERSION_INFO = (4, 0, 2) VERSION = ".".join(map(str, VERSION_INFO)) ################################################################################