wip-odata-v4 doc: add changelog entry for all EDM NS

My apologies for not adding it in the commit:
f672e72ec7a7c521f00f93f8eb6114430aca5a65

filak-sap

Push event #179 passed

  • Ran for
  • Total time
  • New branch build
.travis.yml
dist: xenial
sudo: required
language: python
python:
  - "3.6"
  - "3.7"
  - "3.8"

# command to install dependencies
install:
  - pip install .
  - pip install -r dev-requirements.txt
  - pip install -r requirements.txt
  - pip install bandit

# command to run tests
script:
  - make check
  - bandit -r -lll .

after_success:
  - codecov

notifications:
    email:
        recipients:
            - jakub.filak@sap.com
            - michal.nezerka@sap.com
    on_success: always
    on_failure: always
Build Config
{
  "dist": "xenial",
  "sudo": "required",
  "python": [
    "3.6",
    "3.7",
    "3.8"
  ],
  "script": [
    "make check",
    "bandit -r -lll ."
  ],
  "install": [
    "pip install .",
    "pip install -r dev-requirements.txt",
    "pip install -r requirements.txt",
    "pip install bandit"
  ],
  "language": "python",
  "after_success": [
    "codecov"
  ],
  "notifications": {
    "email": {
      "recipients": [
        "jakub.filak@sap.com",
        "michal.nezerka@sap.com"
      ]
    },
    "on_failure": "always",
    "on_success": "always"
  }
}