Skip to content

Commit

Permalink
build: bump version to 0.3.0 (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
uniqueg authored Jul 3, 2020
1 parent 54a9e34 commit 9e9e4a6
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ python:
- "3.7"
- "3.8"

env:
- TRAVIS: true

services:
- docker

Expand Down
3 changes: 0 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
FROM python:3.6-slim-stretch as base

# Metadata
LABEL base.image="python:3.6-slim-stretch"
LABEL software="FOCA"
LABEL software.version="0.2.0"
LABEL software.description="Kickstart OpenAPI-based microservice development with Flask & Connexion"
LABEL software.website="https://github.com/elixir-cloud-aai/foca"
LABEL software.documentation="https://github.com/elixir-cloud-aai/foca"
LABEL software.license="https://spdx.org/licenses/Apache-2.0"
LABEL maintainer="alexander.kanitz@alumni.ethz.ch"
LABEL maintainer.organisation="ELIXIR Cloud & AAI"
Expand Down
4 changes: 3 additions & 1 deletion docs/api/conf.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from foca import __version__

# Configuration file for the Sphinx documentation builder.
#
# This file only contains a selection of the most common options. For a full
Expand Down Expand Up @@ -25,7 +27,7 @@
author = 'ELIXIR Cloud & AAI'

# The full version, including alpha/beta/rc tags
release = '0.2.0'
release = __version__


# -- General configuration ---------------------------------------------------
Expand Down
1 change: 1 addition & 0 deletions foca/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = '0.3.0'
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ PyJWT==1.7.1
pylint==2.5.3
pymongo==3.10.1
pytest==5.4.3
python-semantic-release==7.2.1
PyYAML==5.3.1
requests==2.23.0
swagger-ui-bundle==0.0.6
Expand Down
5 changes: 5 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
[flake8]
exclude = .git,venv,env
max-line-length = 79

[semantic_release]
branch = master
version_variable = foca/__init__.py:__version__

4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import os
from setuptools import setup, find_packages

from foca import __version__

root_dir = os.path.dirname(os.path.abspath(__file__))

# Read long description from file
Expand All @@ -17,7 +19,7 @@

setup(
name="foca",
version="0.2.0",
version=__version__,
description=(
"Archetype for OpenAPI microservices based on Flask and Connexion"
),
Expand Down

0 comments on commit 9e9e4a6

Please sign in to comment.