Skip to content

Commit 5c0c4f6

Browse files
author
Mickaël Schoentgen
committed
Release 6.1.0
1 parent f761b64 commit 5c0c4f6

File tree

5 files changed

+17
-6
lines changed

5 files changed

+17
-6
lines changed

CHANGELOG

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,13 @@ History:
22

33
<see Git checking messages for history>
44

5-
6.0.1 2020/xx/xx
5+
6.1.0 2020/10/31
66
- MSS: reworked how C functions are initialised
77
- Mac: reduce the number of function calls
88
- Mac: support macOS Big Sur (fixes #178)
99
- tests: expand Python versions to 3.9 and 3.10
1010
- tests: fix macOS intepreter not found on Travis-CI
1111
- tests: fix test_entry_point() when there are several monitors
12-
- :heart: contributors: @
1312

1413
6.0.0 2020/06/30
1514
- removed usage of deprecated "license_file" option for "license_files"

CHANGES.rst

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
1-
6.0.1 (2020-xx-xx)
1+
6.1.0 (2020-10-31)
22
==================
33

4+
darwin.py
5+
---------
6+
- Added ``CFUNCTIONS``
47

8+
linux.py
9+
--------
10+
- Added ``CFUNCTIONS``
11+
12+
windows.py
13+
----------
14+
- Added ``CFUNCTIONS``
15+
- Added ``MONITORNUMPROC``
16+
- Removed ``MSS.monitorenumproc``. Use ``MONITORNUMPROC`` instead.
517

618

719
6.0.0 (2020-06-30)

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
# built documents.
2828
#
2929
# The short X.Y version.
30-
version = "6.0.1"
30+
version = "6.1.0"
3131

3232
# The full version, including alpha/beta/rc tags.
3333
release = "latest"

mss/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from .exception import ScreenShotError
1313
from .factory import mss
1414

15-
__version__ = "6.0.1"
15+
__version__ = "6.1.0"
1616
__author__ = "Mickaël 'Tiger-222' Schoentgen"
1717
__copyright__ = """
1818
Copyright (c) 2013-2020, Mickaël 'Tiger-222' Schoentgen

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = mss
3-
version = 6.0.1
3+
version = 6.1.0
44
author = Mickaël 'Tiger-222' Schoentgen
55
author-email = [email protected]
66
description = An ultra fast cross-platform multiple screenshots module in pure python using ctypes.

0 commit comments

Comments
 (0)