Skip to content

Commit 045c175

Browse files
committed
Release v3.13
1 parent c8cda72 commit 045c175

File tree

4 files changed

+6
-10
lines changed

4 files changed

+6
-10
lines changed

CHANGELOG.rst

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

5-
latest
6-
------
5+
3.13 (2025-10-29)
6+
-----------------
77

88
* Add `nominate_cycle_breakers` method.
99

docs/conf.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
# documentation root, use os.path.abspath to make it absolute, like shown here.
1414
#
1515
import os
16+
1617
# import sys
1718
# sys.path.insert(0, os.path.abspath('.'))
1819

@@ -26,8 +27,7 @@
2627
# The short X.Y version
2728
version = ""
2829
# The full version, including alpha/beta/rc tags
29-
release = "3.12"
30-
30+
release = "3.13"
3131

3232
# -- General configuration ---------------------------------------------------
3333

@@ -67,7 +67,6 @@
6767
# The name of the Pygments (syntax highlighting) style to use.
6868
pygments_style = "sphinx"
6969

70-
7170
# -- Options for HTML output -------------------------------------------------
7271

7372
# The theme to use for HTML and HTML Help pages. See the documentation for
@@ -105,7 +104,6 @@
105104
# Output file base name for HTML help builder.
106105
htmlhelp_basename = "Grimpdoc"
107106

108-
109107
# -- Options for LaTeX output ------------------------------------------------
110108

111109
latex_elements = {
@@ -130,14 +128,12 @@
130128
(master_doc, "Grimp.tex", "Grimp Documentation", "David Seddon", "manual"),
131129
]
132130

133-
134131
# -- Options for manual page output ------------------------------------------
135132

136133
# One entry per manual page. List of tuples
137134
# (source start file, name, description, authors, manual section).
138135
man_pages = [(master_doc, "grimp", "Grimp Documentation", [author], 1)]
139136

140-
141137
# -- Options for Texinfo output ----------------------------------------------
142138

143139
# Grouping the document tree into Texinfo files. List of tuples

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.12"
11+
version = "3.13"
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.12"
1+
__version__ = "3.13"
22

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

0 commit comments

Comments
 (0)