Skip to content

Commit

Permalink
Prepare release 0.4.0
Browse files Browse the repository at this point in the history
* Update HISTORY.md
* Switch to markdown PyPi README
  • Loading branch information
mixxorz committed Mar 30, 2018
1 parent 573bc7a commit c09f8e7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 17 deletions.
10 changes: 8 additions & 2 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release History

## 0.4.0 (2018-03-30)

**Features and Improvements**

* Add `ModelField` and `MultipleModelField`

## 0.3.1 (2017-12-30)

**Bug fixes**
Expand All @@ -16,8 +22,8 @@

**Features and Improvements**

* Add ServiceView
* Add ModelService
* Add `ServiceView`
* Add `ModelService`
* Add pt_BR localization

## 0.1.0 (2017-08-13)
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ six
flake8
coverage
tox
twine
12 changes: 2 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,6 @@

import service_objects

pypi_readme = """
django-service-objects
======================
Service objects for Django
`Go to GitHub for more info <https://github.com/mixxorz/django-service-objects>`_
""" # noqa


def read_file(filename):
with open(join(dirname(abspath(__file__)), filename)) as f:
Expand All @@ -29,7 +20,8 @@ def read_file(filename):
include_package_data=True,
license=service_objects.__license__,
description=service_objects.__doc__,
long_description=pypi_readme,
long_description=read_file('README.md'),
long_description_content_type='text/markdown',
url='https://github.com/mixxorz/django-service-objects',
author='Mitchel Cabuloy',
author_email='[email protected]',
Expand Down
5 changes: 0 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ envlist =
py{27,34,35,36}-django111
py{34,35,36}-django20
docs
readme

[testenv]
deps =
Expand All @@ -36,10 +35,6 @@ commands = make html
deps = flake8
commands = flake8

[testenv:readme]
deps = readme_renderer
commands = python setup.py check --restructuredtext --strict

[travis:env]
DJANGO =
1.8: django18
Expand Down

0 comments on commit c09f8e7

Please sign in to comment.