Skip to content

Commit d76ea0d

Browse files
committed
Release v3.14
1 parent f428912 commit d76ea0d

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

CHANGELOG.rst

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22
Changelog
33
=========
44

5-
latest
6-
------
5+
3.14 (2025-12-10)
6+
-----------------
77

8-
* Drop support for Python 3.9.
9-
* Bugfix: don't treat t-strings as syntax errors. https://github.com/python-grimp/grimp/issues/268
108
* Support building graph from namespace packages, not just their portions.
9+
* Bugfix: support Python 3.14 syntax such as t-strings as syntax errors.
10+
(https://github.com/python-grimp/grimp/issues/268)
11+
* Drop support for Python 3.9.
1112

1213
3.13 (2025-10-29)
1314
-----------------

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# The short X.Y version
2727
version = ""
2828
# The full version, including alpha/beta/rc tags
29-
release = "3.13"
29+
release = "3.14"
3030

3131
# -- General configuration ---------------------------------------------------
3232

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module-name = "grimp._rustgrimp"
88

99
[project]
1010
name = "grimp"
11-
version = "3.13"
11+
version = "3.14"
1212
license = {text = "BSD 2-Clause License"}
1313
description = "Builds a queryable graph of the imports within one or more Python packages."
1414
authors = [

src/grimp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "3.13"
1+
__version__ = "3.14"
22

33
from .application.graph import DetailedImport, ImportGraph, Import
44
from .domain.analysis import PackageDependency, Route

0 commit comments

Comments
 (0)