Skip to content

Commit 6d40181

Browse files
committed
Bump up version
1 parent d00d4ad commit 6d40181

File tree

2 files changed

+16
-10
lines changed

2 files changed

+16
-10
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## **v0.6** - __________
4+
5+
### Fixed
6+
- Log filter spaces handling
7+
- Log entry separators handling while using log filters
8+
- OSC message representation in log
9+
- Autostart imports issues
10+
11+
### Added
12+
- Message Sender widget
13+
- "Allow only a single instance" option
14+
315
## **v0.5** - 30.06.2024
416

517
### Fixed

pyproject.toml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = 'hatchling.build'
44

55
[project]
66
name = 'midiscripter'
7-
version = '0.5'
7+
version = '0.6'
88
description = 'Framework for scripting MIDI, keyboard and Open Sound Control input and output'
99
readme = 'README.md'
1010
requires-python = '>=3.11'
@@ -26,18 +26,13 @@ dependencies = [
2626
'python-osc ~=1.7', # Unlicense
2727
'pynput ~=1.7', # LGPL
2828
'watchdog ~=4.0', # Apache
29-
'PySide6_Essentials >6.4, <6.7', # LGPL Got broken Signal.connect on 6.7
29+
'PySide6_Essentials >6.4', # LGPL
3030
'pywin32; platform_system == "Windows"', # BSD
3131
]
3232

3333
[project.optional-dependencies]
3434
dev = ['ruff']
35-
doc = [
36-
'mkdocs-material',
37-
'mkdocstrings',
38-
'griffe-inherited-docstrings',
39-
'black'
40-
]
35+
doc = ['mkdocs-material', 'mkdocstrings', 'griffe-inherited-docstrings', 'black']
4136

4237
[tool.hatch.build.targets.sdist]
4338
only-include = ['midiscripter']
@@ -54,8 +49,7 @@ Source = 'https://github.com/Maboroshy/midi-scripter'
5449
line-length = 100
5550

5651
[tool.ruff.lint]
57-
select = ['B', 'C', 'E', 'F', 'PERF', 'TCH', 'SIM', 'UP', 'ANN001',
58-
'ANN201', 'ANN202', ]
52+
select = ['B', 'C', 'E', 'F', 'PERF', 'TCH', 'SIM', 'UP', 'ANN001', 'ANN201', 'ANN202']
5953
ignore = ['E501', 'F401', 'F405', 'F403', 'SIM105']
6054

6155
[tool.ruff.format]

0 commit comments

Comments
 (0)