Skip to content

Commit 0942acd

Browse files
authored
Release 8.0.3
Merge pull request #2685 from sopel-irc/release-prep/8.0.3
2 parents a3f38bd + fe664b1 commit 0942acd

File tree

4 files changed

+22
-6
lines changed

4 files changed

+22
-6
lines changed

NEWS

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@ This file is used to auto-generate the "Changelog" section of Sopel's website.
22
When adding new entries, follow the style guide in NEWS.spec.md to avoid
33
causing problems with the site build.
44

5+
Changes between 8.0.2 and 8.0.3
6+
===============================
7+
8+
Plugin changes
9+
--------------
10+
11+
* lmgtfy:
12+
* Updated to a working domain name [[#2658][]]
13+
14+
[#2658]: https://github.com/sopel-irc/sopel/pull/2658
15+
16+
517
Changes between 8.0.1 and 8.0.2
618
===============================
719

dev-requirements.txt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ coveralls>=2.0
33
flake8>=5
44
flake8-coding
55
flake8-future-import
6-
flake8-import-order
6+
# 'flake8-import-order' 0.19 adds slightly broken checks for TYPE_CHECKING
7+
# blocks; see https://github.com/PyCQA/flake8-import-order/issues/214
8+
# Pinned because of that, and because it drops support for Python 3.8
9+
flake8-import-order<0.19
710
flake8-type-checking; python_version >= '3.8'
811
# Sphinx theme
912
furo==2023.9.10
@@ -25,7 +28,8 @@ vcrpy @ git+https://github.com/sopel-irc/vcrpy@uncap-urllib3
2528
# reverting to mainline vcrpy is tracked in #2456
2629
urllib3<2.3
2730
# type check
28-
mypy>=1.3,<2
31+
# often breaks CI on master, so pin and update deliberately, on our own terms
32+
mypy==1.11.2
2933
# for `pkg_resources`; first version in which it's typed
3034
# we don't use `pkg_resources` directly, but mypy still cares
3135
setuptools>=71.1

pyproject.toml

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

1212
[project]
1313
name = "sopel"
14-
version = "8.0.2"
14+
version = "8.0.3"
1515
description = "Simple and extensible IRC bot"
1616
maintainers = [
1717
{ name="dgw" },

sopel/builtins/lmgtfy.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313

1414

1515
@plugin.command('lmgtfy', 'lmgify', 'gify', 'gtfy')
16-
@plugin.example('.lmgtfy sopel', 'https://lmgtfy.com/?q=sopel')
17-
@plugin.example('.lmgtfy sopel bot', 'https://lmgtfy.com/?q=sopel+bot', user_help=True)
16+
@plugin.example('.lmgtfy sopel', 'https://lmgtfy2.com/?q=sopel')
17+
@plugin.example('.lmgtfy sopel bot', 'https://lmgtfy2.com/?q=sopel+bot', user_help=True)
1818
@plugin.example('.lmgtfy', 'https://www.google.com/', user_help=True)
1919
def googleit(bot, trigger):
2020
"""Let me just… Google that for you."""
@@ -23,4 +23,4 @@ def googleit(bot, trigger):
2323
qs = urlencode({
2424
'q': trigger.group(2),
2525
})
26-
bot.say('https://lmgtfy.com/?%s' % qs)
26+
bot.say('https://lmgtfy2.com/?%s' % qs)

0 commit comments

Comments
 (0)