Skip to content

Commit

Permalink
Merge pull request #76 from Cornices/prepare-0.5.3
Browse files Browse the repository at this point in the history
Prepare 0.5.3
  • Loading branch information
leplatrem authored Feb 14, 2018
2 parents 06c6199 + c127cc7 commit bb18a12
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 13 deletions.
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
CHANGES
=======

0.5.3 (unreleased)
0.5.3 (2018-02-14)
------------------

**Pyramid compliance**
Expand Down
10 changes: 9 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Makefile for Sphinx documentation
#

#
VIRTUALENV = virtualenv --python=python3
TEMPDIR := $(shell mktemp -du)
SPHINXOPTS =
SPHINXBUILD = sphinx-build
SPHINXBUILDDIR = docs/build
Expand All @@ -21,6 +23,12 @@ help:
clean:
-rm -rf $(BUILDDIR)/*

build-requirements:
$(VIRTUALENV) $(TEMPDIR)
$(TEMPDIR)/bin/pip install -U pip
$(TEMPDIR)/bin/pip install -Ue .
$(TEMPDIR)/bin/pip freeze | grep -v -- '-e' > requirements.txt

docs:
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(SPHINXBUILDDIR)/html
@echo
Expand Down
23 changes: 13 additions & 10 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
colander==1.3.1
cornice==2.3.0
iso8601==0.1.11
colander==1.4
cornice==3.1.0
hupper==1.0
iso8601==0.1.12
PasteDeploy==1.5.2
pyramid==1.7.3
repoze.lru==0.6
simplejson==3.10.0
six==1.10.0
plaster==1.0
plaster-pastedeploy==0.4.2
pyramid==1.9.1
repoze.lru==0.7
simplejson==3.13.2
six==1.11.0
translationstring==1.3
venusian==1.0
venusian==1.1.0
WebOb==1.7.1
zope.deprecation==4.2.0
zope.interface==4.3.3
zope.deprecation==4.3.0
zope.interface==4.4.3
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

setup(
name="cornice_swagger",
version='0.5.3.dev0',
version='0.5.3',
description="Generate swagger from a Cornice application",
long_description=README + "\n\n" + CHANGES,
license="Apache License (2.0)",
Expand Down

0 comments on commit bb18a12

Please sign in to comment.