Skip to content

Commit 13e6f05

Browse files
committedDec 18, 2022
Release v0.4.8
1 parent 9e58d5e commit 13e6f05

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed
 

‎NEWS

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
Changes in 0.4.8
2+
================
3+
4+
Changed:
5+
* Use `emoji` 2.0 API style (#119)
6+
* If you installed the `emoji` package and its version is <1.7.0, you will
7+
need to `pip install --upgrade emoji`.
8+
* A future version of sopel-github will make this optional dependency easier
9+
to manage with a setuptools extra.
10+
11+
Fixed:
12+
* Wrong webhook payload attributes used in push handler (#117)
13+
14+
115
Changes in 0.4.7
216
================
317

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
setup(
2929
name='sopel_modules.github',
30-
version='0.4.7',
30+
version='0.4.8',
3131
description='GitHub plugin for Sopel',
3232
long_description=readme + '\n\n' + history,
3333
long_description_content_type='text/markdown',

‎sopel_modules/github/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
__author__ = 'maxpowa'
1111
__email__ = 'maxpowa@outlook.com'
1212
__maintainer__ = 'dgw'
13-
__version__ = '0.4.7'
13+
__version__ = '0.4.8'
1414
__repo__ = 'https://github.com/sopel-irc/sopel-github'
1515

0 commit comments

Comments
 (0)
Please sign in to comment.