Skip to content

Commit 6b4bfaa

Browse files
committed
Bump to version 1.8.0
1 parent 461e50e commit 6b4bfaa

28 files changed

+55
-56
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# CHANGELOG
22

33
## Unreleased
4+
5+
## v1.8.0
46
### Added
57
* Added support of environments to `sync`.
68

contentful/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
from .content_type_field import ContentTypeField # noqa: F401
1212

1313

14-
__version__ = "1.7.0"
14+
__version__ = "1.8.0"
1515
__author__ = "Contentful GmbH (David Litvak Bruno)"
1616
__email__ = "david.litvak@contentful.com"

docs/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 0e7aa08b462e02efd4da5205f444e397
3+
config: ecb059e08c7ec219358e6101de8d0ad0
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

docs/_modules/contentful/array.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
<html xmlns="http://www.w3.org/1999/xhtml">
66
<head>
77
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
8-
<title>contentful.array &#8212; Contentful 1.7.0 documentation</title>
8+
<title>contentful.array &#8212; Contentful 1.8.0 documentation</title>
99
<link rel="stylesheet" href="../../_static/alabaster.css" type="text/css" />
1010
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
1111
<script type="text/javascript">
1212
var DOCUMENTATION_OPTIONS = {
1313
URL_ROOT: '../../',
14-
VERSION: '1.7.0',
14+
VERSION: '1.8.0',
1515
COLLAPSE_INDEX: false,
1616
FILE_SUFFIX: '.html',
1717
HAS_SOURCE: true,

docs/_modules/contentful/asset.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
<html xmlns="http://www.w3.org/1999/xhtml">
66
<head>
77
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
8-
<title>contentful.asset &#8212; Contentful 1.7.0 documentation</title>
8+
<title>contentful.asset &#8212; Contentful 1.8.0 documentation</title>
99
<link rel="stylesheet" href="../../_static/alabaster.css" type="text/css" />
1010
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
1111
<script type="text/javascript">
1212
var DOCUMENTATION_OPTIONS = {
1313
URL_ROOT: '../../',
14-
VERSION: '1.7.0',
14+
VERSION: '1.8.0',
1515
COLLAPSE_INDEX: false,
1616
FILE_SUFFIX: '.html',
1717
HAS_SOURCE: true,

docs/_modules/contentful/client.html

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
<html xmlns="http://www.w3.org/1999/xhtml">
66
<head>
77
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
8-
<title>contentful.client &#8212; Contentful 1.7.0 documentation</title>
8+
<title>contentful.client &#8212; Contentful 1.8.0 documentation</title>
99
<link rel="stylesheet" href="../../_static/alabaster.css" type="text/css" />
1010
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
1111
<script type="text/javascript">
1212
var DOCUMENTATION_OPTIONS = {
1313
URL_ROOT: '../../',
14-
VERSION: '1.7.0',
14+
VERSION: '1.8.0',
1515
COLLAPSE_INDEX: false,
1616
FILE_SUFFIX: '.html',
1717
HAS_SOURCE: true,
@@ -377,15 +377,12 @@ <h1>Source code for contentful.client</h1><div class="highlight"><pre>
377377
<span class="sd"> &lt;SyncPage next_sync_token=&#39;w5ZGw6JFwqZmVcKsE8Kow4grw45QdybC...&#39;&gt;</span>
378378
<span class="sd"> &quot;&quot;&quot;</span>
379379

380-
<span class="k">if</span> <span class="bp">self</span><span class="o">.</span><span class="n">environment</span> <span class="o">!=</span> <span class="s1">&#39;master&#39;</span><span class="p">:</span>
381-
<span class="k">raise</span> <span class="n">NotSupportedException</span><span class="p">(</span><span class="s1">&#39;The sync endpoint is only available for the master environment.&#39;</span><span class="p">)</span>
382-
383380
<span class="k">if</span> <span class="n">query</span> <span class="ow">is</span> <span class="kc">None</span><span class="p">:</span>
384381
<span class="n">query</span> <span class="o">=</span> <span class="p">{}</span>
385382
<span class="bp">self</span><span class="o">.</span><span class="n">_normalize_sync</span><span class="p">(</span><span class="n">query</span><span class="p">)</span>
386383

387384
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">_get</span><span class="p">(</span>
388-
<span class="s1">&#39;/sync&#39;</span><span class="p">,</span>
385+
<span class="bp">self</span><span class="o">.</span><span class="n">environment_url</span><span class="p">(</span><span class="s1">&#39;/sync&#39;</span><span class="p">),</span>
389386
<span class="n">query</span>
390387
<span class="p">)</span></div>
391388

docs/_modules/contentful/content_type.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
<html xmlns="http://www.w3.org/1999/xhtml">
66
<head>
77
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
8-
<title>contentful.content_type &#8212; Contentful 1.7.0 documentation</title>
8+
<title>contentful.content_type &#8212; Contentful 1.8.0 documentation</title>
99
<link rel="stylesheet" href="../../_static/alabaster.css" type="text/css" />
1010
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
1111
<script type="text/javascript">
1212
var DOCUMENTATION_OPTIONS = {
1313
URL_ROOT: '../../',
14-
VERSION: '1.7.0',
14+
VERSION: '1.8.0',
1515
COLLAPSE_INDEX: false,
1616
FILE_SUFFIX: '.html',
1717
HAS_SOURCE: true,

docs/_modules/contentful/content_type_cache.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
<html xmlns="http://www.w3.org/1999/xhtml">
66
<head>
77
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
8-
<title>contentful.content_type_cache &#8212; Contentful 1.7.0 documentation</title>
8+
<title>contentful.content_type_cache &#8212; Contentful 1.8.0 documentation</title>
99
<link rel="stylesheet" href="../../_static/alabaster.css" type="text/css" />
1010
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
1111
<script type="text/javascript">
1212
var DOCUMENTATION_OPTIONS = {
1313
URL_ROOT: '../../',
14-
VERSION: '1.7.0',
14+
VERSION: '1.8.0',
1515
COLLAPSE_INDEX: false,
1616
FILE_SUFFIX: '.html',
1717
HAS_SOURCE: true,

docs/_modules/contentful/content_type_field.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
<html xmlns="http://www.w3.org/1999/xhtml">
66
<head>
77
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
8-
<title>contentful.content_type_field &#8212; Contentful 1.7.0 documentation</title>
8+
<title>contentful.content_type_field &#8212; Contentful 1.8.0 documentation</title>
99
<link rel="stylesheet" href="../../_static/alabaster.css" type="text/css" />
1010
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
1111
<script type="text/javascript">
1212
var DOCUMENTATION_OPTIONS = {
1313
URL_ROOT: '../../',
14-
VERSION: '1.7.0',
14+
VERSION: '1.8.0',
1515
COLLAPSE_INDEX: false,
1616
FILE_SUFFIX: '.html',
1717
HAS_SOURCE: true,

docs/_modules/contentful/content_type_field_types.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
<html xmlns="http://www.w3.org/1999/xhtml">
66
<head>
77
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
8-
<title>contentful.content_type_field_types &#8212; Contentful 1.7.0 documentation</title>
8+
<title>contentful.content_type_field_types &#8212; Contentful 1.8.0 documentation</title>
99
<link rel="stylesheet" href="../../_static/alabaster.css" type="text/css" />
1010
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
1111
<script type="text/javascript">
1212
var DOCUMENTATION_OPTIONS = {
1313
URL_ROOT: '../../',
14-
VERSION: '1.7.0',
14+
VERSION: '1.8.0',
1515
COLLAPSE_INDEX: false,
1616
FILE_SUFFIX: '.html',
1717
HAS_SOURCE: true,

0 commit comments

Comments
 (0)