Skip to content

Commit

Permalink
Release v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Oct 14, 2022
1 parent f780936 commit d8eb995
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,22 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
[Unreleased]: https://github.com/ISA-Tools/mzml2isa/compare/v1.0.4...HEAD
[Unreleased]: https://github.com/ISA-Tools/mzml2isa/compare/v1.1.0...HEAD


## [v1.1.0] - 2022-10-14
[v1.1.0]: https://github.com/ISA-Tools/mzml2isa/compare/v1.0.4...v1.1.0

### Added
- Support for Python 3.10.
### Changed
- Updated redistributed PSI-MS file to latest version.
- Bumped required `pronto` dependency to `v2.0` and up.
- Use `functools.cached_property` instead of `cached_property.cached_property` in recent Python version where it is available.
- Use `importlib.resources` instead of `pkg-resources` for managing the package resources.
### Removed
- Support for Python 2.7.
- `six` dependency.


## [v1.0.4] - 2021-12-14
Expand Down
2 changes: 1 addition & 1 deletion mzml2isa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"""
__author__ = 'Thomas Lawson, Martin Larralde'
__credits__ = 'Thomas Lawson, Martin Larralde, Ralf Weber, Reza Salek, Ken Haug, Christoph Steinbeck'
__version__ = '1.0.4'
__version__ = '1.1.0'
__license__ = 'GPLv3'

try:
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ project_urls =
[options]
zip_safe = false
include_package_data = false
python_requires = >= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.3.*
python_requires = >=3.6
packages = mzml2isa, mzml2isa.templates, mzml2isa.ontologies
test_suite = tests
test_runner = green
Expand Down

0 comments on commit d8eb995

Please sign in to comment.