Skip to content

Commit

Permalink
update badges
Browse files Browse the repository at this point in the history
  • Loading branch information
klen committed Oct 22, 2014
1 parent ce1ed3e commit da40c2e
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[bumpversion]
commit = True
current_version = 1.1.3
tag = True
tag_name = {new_version}

18 changes: 16 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
.PHONY: release
.PHONY: release major minor patch

VERSION?=minor
release:
@git flow release finish `git flow release | cut -d ' ' -f2`
@bumpversion $(VERSION)
@git checkout master
@git merge develop
@git checkout develop
@git push --all
@git push --tags
@git checkout develop

major:
make release VERSION=major

minor:
make release VERSION=minor

patch:
make release VERSION=patch
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
Stouts.wsgi
===========

[![Build Status](https://travis-ci.org/Stouts/Stouts.wsgi.png)](https://travis-ci.org/Stouts/Stouts.wsgi)
[![Build Status](http://img.shields.io/travis/Stouts/Stouts.wsgi.svg?style=flat-square)](https://travis-ci.org/Stouts/Stouts.wsgi)
[![Galaxy](http://img.shields.io/badge/galaxy-Stouts.wsgi-blue.svg?style=flat-square)](https://galaxy.wsgi.com/list#/roles/831)
[![Tag](http://img.shields.io/github/tag/Stouts/Stouts.wsgi.svg?style=flat-square)]()

Ansible role which deploys wsgi application (uwsgi, nginx, virtualenv)

Expand Down

0 comments on commit da40c2e

Please sign in to comment.