Skip to content

Commit 9c03a51

Browse files
authored
Release 6.0.12 (#526)
2 parents 6cdc208 + 70a687e commit 9c03a51

40 files changed

+59
-45
lines changed

.readthedocs.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
version: 2
2+
3+
# Set the version of Python and other tools you might need
4+
build:
5+
os: "ubuntu-22.04"
6+
tools:
7+
python: "3.11"
8+
9+
# Build documentation in the docs/ directory with Sphinx
10+
sphinx:
11+
builder: "html"
12+
configuration: "docs/conf.py"
13+
fail_on_warning: true

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ feedparser and its unit tests are released under the following license:
22

33
----- begin license block -----
44

5-
Copyright (C) 2010-2023 Kurt McKee <contactme@kurtmckee.org>
5+
Copyright (C) 2010-2025 Kurt McKee <contactme@kurtmckee.org>
66
Copyright (C) 2002-2008 Mark Pilgrim
77
All rights reserved.
88

@@ -38,7 +38,7 @@ released under the following license:
3838

3939
----- begin license block -----
4040

41-
Copyright (C) 2010-2023 Kurt McKee <contactme@kurtmckee.org>
41+
Copyright (C) 2010-2025 Kurt McKee <contactme@kurtmckee.org>
4242
Copyright (C) 2004-2008 Mark Pilgrim. All rights reserved.
4343

4444
Redistribution and use in source (Sphinx ReST) and "compiled" forms (HTML, PDF,

NEWS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
coming in the next release:
22

3+
6.0.12 - 10 September 2025
4+
* Fix an ``AssertionError`` crash that occurs with Python 3.10 and higher. (#304)
5+
* Fix a ``DeprecationWarning`` thrown during calls to ``re.sub``. (#389)
6+
* Add a Read the Docs configuration.
7+
38
6.0.11 - 9 December 2023
49
* Resolve ``cgi`` module deprecation warnings. (#330)
510

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
..
22
This file is part of feedparser.
3-
Copyright 2010-2023 Kurt McKee <contactme@kurtmckee.org>
3+
Copyright 2010-2025 Kurt McKee <contactme@kurtmckee.org>
44
Copyright 2002-2008 Mark Pilgrim
55
Released under the BSD 2-clause license.
66

changelog.d/20220521_105155_kurtmckee_fix_python_3_11_cgi_deprecation.rst

Lines changed: 0 additions & 4 deletions
This file was deleted.

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
# project information
1313
project = 'feedparser'
14-
copyright = '2010-2023 Kurt McKee, 2004-2008 Mark Pilgrim'
14+
copyright = '2010-2025 Kurt McKee, 2004-2008 Mark Pilgrim'
1515
language = 'en'
1616

1717
# documentation options

docs/license.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Documentation license
44
=====================
55

6-
Copyright 2010-2023 Kurt McKee, 2004-2008 Mark Pilgrim. All rights reserved.
6+
Copyright 2010-2025 Kurt McKee, 2004-2008 Mark Pilgrim. All rights reserved.
77

88
Redistribution and use in source (Sphinx ReST) and "compiled" forms (HTML, PDF,
99
PostScript, RTF and so forth) with or without modification, are permitted

dodo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This file is part of feedparser.
2-
# Copyright 2020-2023 Kurt McKee <contactme@kurtmckee.org>
2+
# Copyright 2020-2025 Kurt McKee <contactme@kurtmckee.org>
33
# Released under the BSD 2-clause license.
44

55
# The tasks defined in this file automates the entire

feedparser/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2010-2023 Kurt McKee <contactme@kurtmckee.org>
1+
# Copyright 2010-2025 Kurt McKee <contactme@kurtmckee.org>
22
# Copyright 2002-2008 Mark Pilgrim
33
# All rights reserved.
44
#
@@ -32,7 +32,7 @@
3232

3333
__author__ = 'Kurt McKee <contactme@kurtmckee.org>'
3434
__license__ = 'BSD 2-clause'
35-
__version__ = '6.0.11'
35+
__version__ = '6.0.12'
3636

3737
# HTTP "User-Agent" header to send to servers when downloading feeds.
3838
# If you are embedding feedparser in a larger application, you should

feedparser/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# The public API for feedparser
2-
# Copyright 2010-2023 Kurt McKee <contactme@kurtmckee.org>
2+
# Copyright 2010-2025 Kurt McKee <contactme@kurtmckee.org>
33
# Copyright 2002-2008 Mark Pilgrim
44
# All rights reserved.
55
#

0 commit comments

Comments
 (0)