Skip to content

Commit

Permalink
Merge pull request #36 from sebalix/release-0.7.0
Browse files Browse the repository at this point in the history
Prepare the new release 0.7.0
  • Loading branch information
sebalix committed Nov 26, 2018
2 parents bb1ba9f + db8e01d commit 814ed65
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
0.7.0
=====
- IMP: Support added for Odoo 12.0
- IMP: Convenient script 'run_tests_docker.sh' to run tests locally against
the official Odoo Docker image
- IMP: Implement 'with_context(...)' and 'with_env(...)' methods on the Model
class (they were only available on recordset until now)
- IMP: Logger added (all requests, params + response) + Documentation

0.6.2
=====
- FIX: Perform HTTP requests with or without a leading slash in the URL
Expand Down
4 changes: 2 additions & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@
# built documents.
#
# The short X.Y version.
version = '0.6.2'
version = '0.7.0'
# The full version, including alpha/beta/rc tags.
release = '0.6.2'
release = '0.7.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 odoorpc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
__author__ = 'ABF Osiell - Sebastien Alix'
__email__ = '[email protected]'
__licence__ = 'LGPL v3'
__version__ = '0.6.2'
__version__ = '0.7.0'

__all__ = ['ODOO', 'error']

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import setuptools

name = 'OdooRPC'
version = '0.6.2'
version = '0.7.0'
description = ("OdooRPC is a Python package providing an easy way to "
"pilot your Odoo servers through RPC.")
with open("README.rst", "r") as readme:
Expand Down

0 comments on commit 814ed65

Please sign in to comment.