From 7a21c7dd7fc35c8106ed129d775b6b9659e791e1 Mon Sep 17 00:00:00 2001 From: Juda Kaleta Date: Fri, 1 May 2015 10:51:52 +0200 Subject: [PATCH] Release 1.0 --- CHANGES.rst | 23 +++++++++++++++++++---- README.rst | 4 +--- docs/api/embed_video.admin.rst | 2 +- docs/api/embed_video.backends.rst | 2 +- docs/api/embed_video.fields.rst | 2 +- docs/api/embed_video.template_tags.rst | 2 +- docs/api/embed_video.utils.rst | 2 +- docs/api/index.rst | 2 +- docs/development/changelog.rst | 2 +- docs/development/contributing.rst | 2 +- docs/development/index.rst | 2 +- docs/development/todos.rst | 2 +- docs/example-project.rst | 2 +- docs/index.rst | 8 ++++---- docs/installation.rst | 6 +++--- docs/websites.rst | 2 +- embed_video/__init__.py | 2 +- 17 files changed, 40 insertions(+), 27 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 4fcc943..57bc8cb 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -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 `_, `#36 `_) + Backward compatible changes: -*No changes yet.* + +- added support for Django 1.7 and Django 1.8 + +- added support for Vimeo channels + (`#47 `_) + +- fix resizing of SoundCloud iframe + (`#41 `_) Release 0.11 (July 26, 2014) @@ -34,8 +49,8 @@ Release 0.10 (May 24, 2014) (`#24 `_) -Release 0.9 (Apr. 4, 2014) --------------------------- +Release 0.9 (Apr. 04, 2014) +--------------------------- - Add ``VideoBackend.template_name`` and rendering embed code from file. diff --git a/README.rst b/README.rst index bfd9e03..c866d9f 100644 --- a/README.rst +++ b/README.rst @@ -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: diff --git a/docs/api/embed_video.admin.rst b/docs/api/embed_video.admin.rst index 2cc102e..5acdff0 100644 --- a/docs/api/embed_video.admin.rst +++ b/docs/api/embed_video.admin.rst @@ -1,5 +1,5 @@ Admin -============================================== +===== .. automodule:: embed_video.admin :members: diff --git a/docs/api/embed_video.backends.rst b/docs/api/embed_video.backends.rst index a94dbb8..78745c2 100644 --- a/docs/api/embed_video.backends.rst +++ b/docs/api/embed_video.backends.rst @@ -1,5 +1,5 @@ Backends -============================================== +======== .. automodule:: embed_video.backends :members: diff --git a/docs/api/embed_video.fields.rst b/docs/api/embed_video.fields.rst index 301dfe7..776dc1d 100644 --- a/docs/api/embed_video.fields.rst +++ b/docs/api/embed_video.fields.rst @@ -1,5 +1,5 @@ Fields -============================================== +====== .. automodule:: embed_video.fields :members: diff --git a/docs/api/embed_video.template_tags.rst b/docs/api/embed_video.template_tags.rst index 711d924..0892f67 100644 --- a/docs/api/embed_video.template_tags.rst +++ b/docs/api/embed_video.template_tags.rst @@ -1,5 +1,5 @@ Template tags -============================================== +============= You have to load template tag library first. diff --git a/docs/api/embed_video.utils.rst b/docs/api/embed_video.utils.rst index fc15e09..f4c3ddf 100644 --- a/docs/api/embed_video.utils.rst +++ b/docs/api/embed_video.utils.rst @@ -1,5 +1,5 @@ Utils -=================== +===== .. automodule:: embed_video.utils :members: diff --git a/docs/api/index.rst b/docs/api/index.rst index 7da8fb2..c3035d2 100644 --- a/docs/api/index.rst +++ b/docs/api/index.rst @@ -1,5 +1,5 @@ API reference -============================================== +============= .. toctree:: diff --git a/docs/development/changelog.rst b/docs/development/changelog.rst index 89c36e8..f7e1bd7 100644 --- a/docs/development/changelog.rst +++ b/docs/development/changelog.rst @@ -1,4 +1,4 @@ Changelog -============================================== +========= .. include:: ../../CHANGES.rst diff --git a/docs/development/contributing.rst b/docs/development/contributing.rst index 38e114b..549874f 100644 --- a/docs/development/contributing.rst +++ b/docs/development/contributing.rst @@ -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 `_ diff --git a/docs/development/index.rst b/docs/development/index.rst index 08bda9b..d875990 100644 --- a/docs/development/index.rst +++ b/docs/development/index.rst @@ -1,5 +1,5 @@ Development -============================================== +=========== .. toctree:: diff --git a/docs/development/todos.rst b/docs/development/todos.rst index 48bf40d..819168b 100644 --- a/docs/development/todos.rst +++ b/docs/development/todos.rst @@ -1,5 +1,5 @@ TODOs list -============================================== +========== .. todolist:: diff --git a/docs/example-project.rst b/docs/example-project.rst index 260c927..07dd684 100644 --- a/docs/example-project.rst +++ b/docs/example-project.rst @@ -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 diff --git a/docs/index.rst b/docs/index.rst index 07a8f5f..11633b4 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -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` diff --git a/docs/installation.rst b/docs/installation.rst index 4d16e75..30b6144 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -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. diff --git a/docs/websites.rst b/docs/websites.rst index ec59797..50380a8 100644 --- a/docs/websites.rst +++ b/docs/websites.rst @@ -1,5 +1,5 @@ Websites using django-embed-video -============================================== +================================= - `Tchorici.cz `_ - `Tiempoturco.com `_ diff --git a/embed_video/__init__.py b/embed_video/__init__.py index 8e9776b..47ea8e0 100644 --- a/embed_video/__init__.py +++ b/embed_video/__init__.py @@ -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():