Skip to content

Commit

Permalink
dev: add changelog.rst + rst: how to make links
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Yelizariev committed Mar 18, 2016
1 parent 1aeed22 commit 7a028b2
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/dev/__openerp__.py.rst
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ See also:
version
-------

*Note: whenever you change version, you have to add a record in* :doc:`changelog.rst <changelog.rst>`

The `x.y.z` version numbers follow the semantics `breaking.feature.fix`:

* `x` increments when the data model or the views had significant
Expand Down
30 changes: 30 additions & 0 deletions docs/dev/changelog.rst.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
changelog.rst
=============

changelog.rst is located in ``doc/`` directory of a module.

Template
---------

.. code-block:: rst
Changelog
=========
`2.0.0`
-------
- ADD absolutely new way of ..
`1.2.0`
-------
- ADD new interface for ..
`1.0.1`
-------
- FIX issue about ...
`1.0.0`
-------
- init version
1 change: 1 addition & 0 deletions docs/dev/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Development

README.rst.rst
__openerp__.py
changelog.rst.rst
py/index
xml/index
yml/index
Expand Down
11 changes: 11 additions & 0 deletions docs/other/rst.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,17 @@ Lists
* 1,2,3, ... - numerated


Links
-----

* internal link::

:doc:`Link Text<../relative/path/to/article>`

* external link::

`Link Text <https://google.com/>`_

More documentations
-------------------

Expand Down

0 comments on commit 7a028b2

Please sign in to comment.