Skip to content

Commit

Permalink
Release v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Larralde committed Jan 6, 2019
1 parent ceef99f commit 4b5d459
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 12 deletions.
15 changes: 8 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,19 +72,20 @@ script:
after_script:
- python -m codecov

before_deploy:
- python setup.py sdist bdist_wheel
- twine check dist/*

notifications:
email:
- [email protected]

deploy:
- provider: pypi
distributions: sdist bdist_wheel
user: althonos
- provider: script
script: twine upload dist/*
skip_cleanup: true
password:
secure: JuI14XA+bwrg9Qe5HNDoPj6Dzi4BrNhc/Xq2cStTOeosyCIUKRgEaIkkZ0NrRZ5g9CTdArRwwjtfAzK8MlkTTt4iCVasmirnjafGCrw5vY/ELlqdBuu52RmIx2o5o0eua7dTjI6Q5rrCOBPj4/nB6JFpsTyytxhUXjdw/Wr9ZpSleS6iaWaF/smLTPOPpO6NQh/2kPWM7AErax2Bbg9MdXYTLoBCBk0Kjub93ymSXyZCjX3y1lfpldW7Nmn8ZXcU/ak408oD4EtHMC4BeNpoKju1Jl5qLhMHWIo/G2/X/B9Jdgju1C4DhcqHhumyTm9aI33ECmLMCq6vdsG3gmLl+z0Key6w1A6xekEQrWbmPvi7AmbGVeNz4V4HYVv2cyEmxwhSCIrPWiZKK4YqiJSlzsufSdcrtVYIZ5Xhvb1YXVnGAJ471+ua+ESuQHBUhQM3c3kpFyabsLAPN3eIRjAOWVFNWc/LP/5TA8VgbG3P6D/hGBOZBIyNka3Kj6Q6YOkPyrb80oiJJ229GwTvlG/FQ5by7t2une9At9TfTsKKsKkAlsFSYoCQ6gY65+hzeWrFkTssXSNZbq1MKillL+7/uaW6WwvvVYSl9XAXuaXCrCB7c5fwXem3tWnqV2R75bVaHelgIwjGd4m60DDa+xQG8oikREVuLBILNjp4fEYKrEc=
on:
tags: true
repo: ISA-tools/mzml2isa
python: '3.5'
# condition: $STUDY == MTBLS263
python: '3.6'

8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [v1.0.1] - 2019-01-06
### Changed
- Added `fs` v2.2.0 to supported `fs` versions.
- Bumped `pronto` requirement to v0.11

## [v1.0.0] - 2018-10-16
### Added
- Added GPLv3 license file to source and `wheel` distribution.
Expand All @@ -21,5 +26,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Pinned dependencies in `setup.cfg`.
- Fixed crash on missing `Spectrum representation`.

[Unreleased]: https://github.com/ISA-Tools/mzml2isa/compare/v1.0.0...HEAD
[Unreleased]: https://github.com/ISA-Tools/mzml2isa/compare/v1.0.1...HEAD
[v1.0.1]: https://github.com/ISA-Tools/mzml2isa/compare/v1.0.0...v1.0.1
[v1.0.0]: https://github.com/ISA-Tools/mzml2isa/compare/v0.5.1...v1.0.0
3 changes: 2 additions & 1 deletion ci/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@ codecov
green
pip
setuptools
wheel
wheel
twine
pyinstaller ; sys_platform == 'win32'
2 changes: 1 addition & 1 deletion mzml2isa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

__author__ = 'Thomas Lawson, Martin Larralde'
__credits__ = 'Thomas Lawson, Martin Larralde, Ralf Weber, Reza Salek, Ken Haug, Christoph Steinbeck'
__version__ = '1.0.0'
__version__ = '1.0.1'
__license__ = 'GPLv3'

try:
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ tests_require =
fs.archive[tar.xz] ~=0.5
install_requires =
cached-property ~=1.4
fs ~=2.2.0
pronto ~=0.11.0
fs >=2.1.0,<2.3
pronto >=0.10.0,<1.0.0
six ~=1.11
openpyxl ~=2.5
lxml ~=4.2 ; python_version < '3'
Expand Down

0 comments on commit 4b5d459

Please sign in to comment.