Release 1.0

This commit is contained in:
Juda Kaleta 2015-05-01 10:51:52 +02:00
parent 7de9a22876
commit 7a21c7dd7f
17 changed files with 40 additions and 27 deletions

View file

@ -1,14 +1,29 @@
Release 1.0.0 (dev)
Release 1.1.0 (dev)
-------------------
*No changes yet.*
Release 1.0.0 (May 01, 2015)
----------------------------
**Backward incompatible changes:**
- filter `embed_video_tags.embed` has been removed
- changed behaviour of extra params in video tag
(`#34 <https://github.com/yetty/django-embed-video/issues/34>`_, `#36 <https://github.com/yetty/django-embed-video/pull/36>`_)
Backward compatible changes:
*No changes yet.*
- added support for Django 1.7 and Django 1.8
- added support for Vimeo channels
(`#47 <https://github.com/yetty/django-embed-video/pull/47>`_)
- fix resizing of SoundCloud iframe
(`#41 <https://github.com/yetty/django-embed-video/pull/41>`_)
Release 0.11 (July 26, 2014)
@ -34,8 +49,8 @@ Release 0.10 (May 24, 2014)
(`#24 <https://github.com/yetty/django-embed-video/issues/24>`_)
Release 0.9 (Apr. 4, 2014)
--------------------------
Release 0.9 (Apr. 04, 2014)
---------------------------
- Add ``VideoBackend.template_name`` and rendering embed code from file.

View file

@ -1,7 +1,7 @@
django-embed-video
==================
Django app for easy embeding YouTube and Vimeo videos and music from SoundCloud.
Django app for easy embedding YouTube and Vimeo videos and music from SoundCloud.
.. image:: https://travis-ci.org/yetty/django-embed-video.png?branch=master
:target: https://travis-ci.org/yetty/django-embed-video
@ -75,5 +75,3 @@ Quick start
class Item(models.Model):
video = EmbedVideoField() # same like models.URLField()
.. vim: set tw=80:

View file

@ -1,5 +1,5 @@
Admin
==============================================
=====
.. automodule:: embed_video.admin
:members:

View file

@ -1,5 +1,5 @@
Backends
==============================================
========
.. automodule:: embed_video.backends
:members:

View file

@ -1,5 +1,5 @@
Fields
==============================================
======
.. automodule:: embed_video.fields
:members:

View file

@ -1,5 +1,5 @@
Template tags
==============================================
=============
You have to load template tag library first.

View file

@ -1,5 +1,5 @@
Utils
===================
=====
.. automodule:: embed_video.utils
:members:

View file

@ -1,5 +1,5 @@
API reference
==============================================
=============
.. toctree::

View file

@ -1,4 +1,4 @@
Changelog
==============================================
=========
.. include:: ../../CHANGES.rst

View file

@ -1,5 +1,5 @@
Contributing
==============================================
============
I will be really pleased if you will provide patch to this Django app. Feel free
to change whatever, but keep `PEP8 <http://www.python.org/dev/peps/pep-0008/>`_

View file

@ -1,5 +1,5 @@
Development
==============================================
===========
.. toctree::

View file

@ -1,5 +1,5 @@
TODOs list
==============================================
==========
.. todolist::

View file

@ -2,6 +2,6 @@ Example project
===============
For easy start with using django-embed-video, you can take a look at example
project. It is located in example_project directory in root of repositary.
project. It is located in example_project directory in root of repository.
.. include:: ../example_project/README.rst

View file

@ -1,5 +1,5 @@
django-embed-video's documentation
==============================================
==================================
Django app for easy embeding YouTube and Vimeo videos and music from SoundCloud.
@ -21,8 +21,8 @@ Repository is located on GitHub: https://github.com/yetty/django-embed-video
API
#################
Library API
###########
.. toctree::
:maxdepth: 2
@ -32,7 +32,7 @@ API
Indices and tables
#################################################
##################
* :ref:`genindex`
* :ref:`modindex`

View file

@ -1,8 +1,8 @@
Installation & Setup
==============================================
====================
Installation
##############################################
############
The simpliest way is to use pip to install package:
@ -19,7 +19,7 @@ If you want latest version, you may use Git. It is fresh, but unstable.
Setup
##############################################
#####
Add ``embed_video`` to :py:data:`~django.settings.INSTALLED_APPS` in your Django
settings.

View file

@ -1,5 +1,5 @@
Websites using django-embed-video
==============================================
=================================
- `Tchorici.cz <http://www.tchorici.cz>`_
- `Tiempoturco.com <http://www.tiempoturco.com>`_

View file

@ -3,7 +3,7 @@ Django app for easy embeding YouTube and Vimeo videos and music from
SoundCloud.
"""
VERSION = (1, 0, 0, 'dev')
VERSION = (1, 0, 0, 'stable')
def get_release():