Skip to content

Commit

Permalink
Release v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Sep 14, 2019
1 parent 83e1b7f commit af0b811
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 8 deletions.
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,23 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

[Unreleased]: https://github.com/fastobo/fastobo-py/compare/v0.3.3...HEAD
[Unreleased]: https://github.com/fastobo/fastobo-py/compare/v0.4.0...HEAD


## [v0.4.0] - 2019-09-14

[v0.4.0]: https://github.com/fastobo/fastobo/compare/v0.3.3...v0.4.0

### Added
- `__init__` implementation for `fastobo.term.DefClause`
- `__init__` implementation for `fastobo.syn.Synonym`
- Precompiled wheels for PyPy3 on OSX and Linux.

### Fixed
- `XrefList.__repr__` implementation entering infinite recursion.
- Derive macros generating weird error messages for some `TypeError`s.
- Enabled `extension-module` feature of `pyo3` to allow static linking to Python interpreter.
- Inconsistent error-chaining in Python causing issues with `try/except` blocks.


## [v0.3.3] - 2019-09-10
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["derive"]

[package]
name = "fastobo-py"
version = "0.3.3"
version = "0.4.0"
authors = ["Martin Larralde <martin.larralde@ens-paris-saclay.fr>"]
publish = false
build = "src/build.rs"
Expand Down
2 changes: 1 addition & 1 deletion ci/travis/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ chandler push --github="$TRAVIS_REPO_SLUG" --changelog="CHANGELOG.md"
# --- Deploy to PyPI ---------------------------------------------------------

log Deploying to PyPI
twine upload --skip-existing dist/*.whl dist/*.tar.gz
python3 -m twine upload --skip-existing dist/*.whl dist/*.tar.gz
2 changes: 1 addition & 1 deletion derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fastobo-py-derive-internal"
version = "0.3.3"
version = "0.4.0"
authors = ["Martin Larralde <martin.larralde@ens-cachan.fr>"]
edition = "2018"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = fastobo
version = 0.3.3
version = 0.4.0
author = Martin Larralde
author-email = martin.larralde@ens-paris-saclay.fr
home-page = https://github.com/fastobo/fastobo-py
Expand Down

0 comments on commit af0b811

Please sign in to comment.