Skip to content

Commit d8eb995

Browse files
committed
Release v1.1.0
1 parent f780936 commit d8eb995

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,22 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8-
[Unreleased]: https://github.com/ISA-Tools/mzml2isa/compare/v1.0.4...HEAD
8+
[Unreleased]: https://github.com/ISA-Tools/mzml2isa/compare/v1.1.0...HEAD
9+
10+
11+
## [v1.1.0] - 2022-10-14
12+
[v1.1.0]: https://github.com/ISA-Tools/mzml2isa/compare/v1.0.4...v1.1.0
13+
14+
### Added
15+
- Support for Python 3.10.
16+
### Changed
17+
- Updated redistributed PSI-MS file to latest version.
18+
- Bumped required `pronto` dependency to `v2.0` and up.
19+
- Use `functools.cached_property` instead of `cached_property.cached_property` in recent Python version where it is available.
20+
- Use `importlib.resources` instead of `pkg-resources` for managing the package resources.
21+
### Removed
22+
- Support for Python 2.7.
23+
- `six` dependency.
924

1025

1126
## [v1.0.4] - 2021-12-14

mzml2isa/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"""
3333
__author__ = 'Thomas Lawson, Martin Larralde'
3434
__credits__ = 'Thomas Lawson, Martin Larralde, Ralf Weber, Reza Salek, Ken Haug, Christoph Steinbeck'
35-
__version__ = '1.0.4'
35+
__version__ = '1.1.0'
3636
__license__ = 'GPLv3'
3737

3838
try:

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ project_urls =
3232
[options]
3333
zip_safe = false
3434
include_package_data = false
35-
python_requires = >= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.3.*
35+
python_requires = >=3.6
3636
packages = mzml2isa, mzml2isa.templates, mzml2isa.ontologies
3737
test_suite = tests
3838
test_runner = green

0 commit comments

Comments
 (0)