Skip to content

Commit

Permalink
Update helpers.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Yelizariev committed Nov 7, 2019
1 parent 638c746 commit f605fa3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/migration/helpers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,11 @@ Updating odoo versions in docs

.. code-block:: sh
# bump versions in urls in docs (excluding "Tested on Odoo" expression)
# bump versions in urls in docs (excluding "Tested on Odoo 12.0 SHA" expression)
find . -type f -name *.rst -or -name index.html -or -name *.md | xargs sed -i '/\(Tested on \| 12.0\)/!s/12.0/13.0/g'
# update "tested on Odoo 12.0 community / enterprise" -- IT-Projects specific
find . -type f -name index.html | xargs sed -i 's;<br/>12.0;<br/>13.0;g'
# update CI stuff
sed -i '/Build Status/s/12.0/13.0/g' README.md
sed -i '/VERSION=/s/12.0/13.0/' .travis.yml
git commit *.rst *.html *.md -m ":book::one::three: bump versions in docs"
Expand Down

0 comments on commit f605fa3

Please sign in to comment.