Skip to content

Commit e79df4f

Browse files
committed
release notes
1 parent ad5665a commit e79df4f

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ repos:
1212
hooks:
1313
- id: isort
1414
- repo: https://github.com/psf/black
15-
rev: 24.4.2
15+
rev: 24.8.0
1616
hooks:
1717
- id: black
1818
- repo: https://github.com/pre-commit/pre-commit-hooks
@@ -26,7 +26,7 @@ repos:
2626
- id: check-yaml
2727
- id: debug-statements
2828
- repo: https://github.com/astral-sh/ruff-pre-commit
29-
rev: 'v0.4.2'
29+
rev: 'v0.5.7'
3030
hooks:
3131
- id: ruff
3232
args: ['--fix']

docs/release/ablog-v0.11-released.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,3 +95,13 @@ ABlog v0.11.9 released
9595
----------------------
9696

9797
`Make '_strip' function return as list not set. <https://github.com/sunpy/ablog/pull/280>`__ from `Joe Ziminski <https://github.com/JoeZiminski>`__.
98+
99+
ABlog v0.11.10 released
100+
-----------------------
101+
102+
Fixed wrong branch in the release process.
103+
104+
ABlog v0.11.11 released
105+
-----------------------
106+
107+
Mark Ablog parallel safe.

src/ablog/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,4 +164,4 @@ def setup(app):
164164
pkgdir = os.path.abspath(os.path.dirname(__file__))
165165
locale_dir = os.path.join(pkgdir, "locales")
166166
app.add_message_catalog(MESSAGE_CATALOG_NAME, locale_dir)
167-
return {"version": __version__, "parallel_read_safe": True}
167+
return {"version": __version__, "parallel_read_safe": True}

0 commit comments

Comments
 (0)