Skip to content

Commit

Permalink
Add 0.25.0 release notes (#1600)
Browse files Browse the repository at this point in the history
  • Loading branch information
ddeboer committed Feb 6, 2017
1 parent da24080 commit 2e8dfcb
Show file tree
Hide file tree
Showing 5 changed files with 77 additions and 5 deletions.
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@
# built documents.
#
# The short X.Y version.
version = '0.24'
version = '0.25'
# The full version, including alpha/beta/rc tags.
release = '0.24.0'
release = '0.25.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion doc/developer-guide/releasenotes/rel_0.24.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Release 0.24.0
==============

Welcome to Zotonic 0.24.0, released on 2 January, 2016.
Welcome to Zotonic 0.24.0, released on 2 January, 2017.

Main changes are:

Expand Down
72 changes: 72 additions & 0 deletions doc/developer-guide/releasenotes/rel_0.25.0.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
.. _rel-0.25.0:

Release 0.25.0
==============

Welcome to Zotonic 0.25.0, released on 6 February, 2017.

Main changes are:

* Added ``embedded_media`` filter (:issue:`1591`).
* Added Atom support to mod_export (:issue:`1394`).
* Added ``name`` search query argument (:issue:`1574`).
* Fixed image crop defined in mediaclass (:issue:`919`).
* Fixed adding connection to page block (:issue:`1561`).
* Fixed text blocks not considered by ``without_embedded_media`` filter
(:issue:`1566`).
* Fixed unique name validation for empty names (:issue:`1579`).
* Fixed filewatcher reacting to changes in log files (:issue:`1588`).
* Fixed pivot index names not unique (:issue:`1598`).

Commits since 0.24.0
--------------------

There were since 33 commits since release 0.24.0.

Big thanks to all people contributing to Zotonic!

Git shortlog
............

Arthur Clemens (1):
* Add clarification in template

David de Boer (6):
* doc: Add custom controllers cookbook chapter (#1565)
* doc: Fix postback validator documentation (#1567)
* docker: Build Erlang from source (fix #1590)
* core: Raise timeout when starting site for sitetest
* doc: Fix embedded_media docs
* core: Make pivot index name unique (#1598)

Maas-Maarten Zeeman (1):
* core: Accept push queue names as binaries. Fixes #1575 (#1576)

Marc Worrell (24):
* mod_search: use publication_start as a sub sort for matching, prefer newer content.
* core: evaluate 'and'/'or' as 'andalso' and 'orelse'. Fixes #1561
* mod_base: fix a problem in show_media where utf8 characters were wrongly displayed. Fixes #1572
* mod_search: add a query term 'name' for searching on unqiue names. Fixes #1574
* mod_export: add export in application/atom+xml format. Fixes #1546 Fixes #1394
* Lock new z_stdlib
* core: let filewatcher ignore changes to log files. Fixes #1588
* core: also ignore changes to files in the mnesia directory
* mod_base: in ubf.js use Object.keys() to fetch the keys of an object. This fixes an issue where injected object.prototype functions were serialized as well.
* docs: fix build problem with 'less' code block by using 'text' instead
* mod_base: let filter without_embedded_media also consider text blocks. Add filter embedded_media. Fixes #1566
* core: rsc names with only a '_' are considered 'undefined'. Fixed #1579
* mod_base: let the unique name validation first use 'z_string:to_name/1'. Consider '_' as an invalid unique name. Issue #1579
* mod_base: allow empty unique name.
* core: use crop_center if crop is defined in the mediaclass. Fixes #919
* mod_admin: fix a problem with media preview for unknown resources.
* mod_base: fix ubf decode for plist/map types.
* mod_admin: change positioning of images in connection lists. Fixes #1570
* core: check crop_center syntax on rsc update.
* core: add email DNS Whitelisting support
* Lock new z_stdlib
* core: fix a string/binary conversion issue with the new z_stdlib
* New z_stdlib
* core: fix a problem where next/prev_day could result in a non-existant date. Fixes #1596

row-b (1):
* Minor typo in syntax fixed (#1569)
2 changes: 1 addition & 1 deletion include/zotonic_release.hrl
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
%% limitations under the License.

%% Release number
-define(ZOTONIC_VERSION, "0.24.0").
-define(ZOTONIC_VERSION, "0.25.0").
2 changes: 1 addition & 1 deletion src/zotonic.app.src
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
%% -*- mode: erlang -*-
{application, zotonic,
[{description, "zotonic"},
{vsn, "0.24.0"},
{vsn, "0.25.0"},
{modules,
[
zotonic,
Expand Down

0 comments on commit 2e8dfcb

Please sign in to comment.