Skip to content

Commit

Permalink
Release v0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Sep 15, 2019
1 parent 4fd20f8 commit 3cbb4c5
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: '0.4.0-rev{build}'
version: '0.4.1-rev{build}'
clone_depth: 5
environment:
TARGET: x86_64-pc-windows-msvc
Expand All @@ -13,7 +13,7 @@ cache:

install:
- ps: .\ci\appveyor\install.ps1
- pip install -r ci/requirements.txt
- pip install -U -r ci/requirements.txt

before_build:
- python -V
Expand Down
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

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


## [v0.4.1] - 2019-09-15

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

### Added
- Precompiled wheels for CPython 3.5, 3.6 and 3.7 on Windows x86-64.


## [v0.4.0] - 2019-09-14
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.4.0"
version = "0.4.1"
authors = ["Martin Larralde <martin.larralde@ens-paris-saclay.fr>"]
publish = false
build = "src/build.rs"
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

*Faultless AST for Open Biomedical Ontologies in Python.*

[![TravisCI](https://img.shields.io/travis/fastobo/fastobo-py/master.svg?maxAge=600&style=flat-square)](https://travis-ci.org/fastobo/fastobo-py/branches)
[![TravisCI](https://img.shields.io/travis/fastobo/fastobo-py/master.svg?logo=travis&maxAge=600&style=flat-square)](https://travis-ci.org/fastobo/fastobo-py/branches)
[![AppVeyor](https://img.shields.io/appveyor/ci/althonos/fastobo-py/master?logo=appveyor&style=flat-square&maxAge=600)](https://ci.appveyor.com/project/althonos/fastobo-py)
[![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square&maxAge=2678400)](https://choosealicense.com/licenses/mit/)
[![Source](https://img.shields.io/badge/source-GitHub-303030.svg?maxAge=2678400&style=flat-square)](https://github.com/fastobo/fastobo-py/)
[![PyPI](https://img.shields.io/pypi/v/fastobo.svg?style=flat-square&maxAge=600)](https://pypi.org/project/fastobo)
Expand Down
2 changes: 1 addition & 1 deletion ci/appveyor/deploy.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
If ($env:APPVEYOR_REPO_TAG -eq "true" -And $env:APPVEYOR_REPO_BRANCH -eq "master") {
If ($env:APPVEYOR_REPO_TAG -eq "true") {
Invoke-Expression "twine upload --skip-existing dist/*.whl" 2>$null
} Else {
write-output "Not on a tag on master, won't deploy to pypi"
Expand Down
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.4.0"
version = "0.4.1"
authors = ["Martin Larralde <martin.larralde@ens-cachan.fr>"]
edition = "2018"
publish = false
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = fastobo
version = 0.4.0
version = 0.4.1
author = Martin Larralde
author-email = martin.larralde@ens-paris-saclay.fr
home-page = https://github.com/fastobo/fastobo-py
Expand All @@ -21,6 +21,7 @@ classifiers =
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Scientific/Engineering :: Bio-Informatics
Topic :: Scientific/Engineering :: Medical Science Apps.
Topic :: Software Development :: Libraries :: Python Modules
Expand Down

0 comments on commit 3cbb4c5

Please sign in to comment.