Skip to content

Commit

Permalink
Merge pull request #59 from joshmoore/bump-0.1.3
Browse files Browse the repository at this point in the history
Bump 0.1.3
  • Loading branch information
jburel authored Jul 17, 2019
2 parents f337cd8 + 556998b commit e93c014
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .omeroci/app-deps
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
set -e
set -u
yum -y install https://rpm.nodesource.com/pub_6.x/el/7/x86_64/nodesource-release-el7-1.noarch.rpm
yum -y install npm
yum -y install nodejs
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,10 @@ before_install:

script:
- .omero/docker app

deploy:
provider: pypi
user: $PYPI_USER
password: $PYPI_PASSWORD
on:
tags: true
10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
0.1.3 (Jul 2019)
-----------------

Bug fixing release.

- update webpack-cli (#53)
- support string columns (#55)
- support renamed _bulk_file_annotations method (#57)
- proper close HDF5 tables (#58)

0.1.2 (Sept 2018)
-----------------

Expand Down
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM centos:centos7
COPY . /src
WORKDIR /src
RUN bash /src/.omeroci/app-deps
RUN yum install -y python-setuptools python-virtualenv git
RUN git clean -dfx
RUN virtualenv v && v/bin/pip install twine
RUN python setup.py sdist
2 changes: 1 addition & 1 deletion package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "omero_parade",
"version": "0.1.2",
"version": "0.1.3",
"description": "\"React.js based centre panel for webclient\"",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
from distutils.core import Command
from setuptools import setup, find_packages

VERSION = "0.1.2"
VERSION = "0.1.3"

DESCRIPTION = "A Python plugin for OMERO.web"
AUTHOR = "The Open Microscopy Team"
Expand Down

0 comments on commit e93c014

Please sign in to comment.