@@ -39,9 +39,10 @@ commands:
39
39
- run :
40
40
name : Version checks
41
41
command : |
42
- grep -q $VERSION notebooker/version.py || (echo "ERROR: Version number not found in notebooker/_version.py: $VERSION"; exit 1)
42
+ set -ex
43
+ grep -q $VERSION notebooker/version.py || (echo "ERROR: Version number not found in notebooker/version.py: $VERSION"; exit 1)
43
44
grep -q $VERSION CHANGELOG.md || (echo "ERROR: Version number not found in CHANGES.md: $VERSION"; exit 1)
44
- grep -q $VERSION docs/conf.py || (echo "ERROR: Version number not found in docs/source/ conf.py: $VERSION"; exit 1)
45
+ grep -q $VERSION docs/conf.py || (echo "ERROR: Version number not found in docs/conf.py: $VERSION"; exit 1)
45
46
grep -q $VERSION notebooker/web/static/package.json || (echo "ERROR: Version number not found in package.json: $VERSION"; exit 1)
46
47
- run :
47
48
name : Output useful stuff
@@ -212,7 +213,7 @@ jobs:
212
213
PYTHON_VERSION : " 3_6"
213
214
CIRCLE_ARTIFACTS : /tmp/circleci-artifacts/3_6
214
215
CIRCLE_TEST_REPORTS : /tmp/circleci-test-results/3_6
215
- VERSION : 0.6.3
216
+ VERSION : 0.7.1
216
217
PANDOC_RELEASES_URL : https://github.com/jgm/pandoc/releases
217
218
YARN_STATIC_DIR : notebooker/web/static/
218
219
IMAGE_NAME : mangroup/notebooker
@@ -228,7 +229,7 @@ jobs:
228
229
environment :
229
230
CIRCLE_ARTIFACTS : /tmp/circleci-artifacts/3_7
230
231
CIRCLE_TEST_REPORTS : /tmp/circleci-test-results/3_7
231
- VERSION : 0.6.3
232
+ VERSION : 0.7.1
232
233
PANDOC_RELEASES_URL : https://github.com/jgm/pandoc/releases
233
234
YARN_STATIC_DIR : notebooker/web/static/
234
235
IMAGE_NAME : mangroup/notebooker
@@ -242,7 +243,7 @@ jobs:
242
243
environment :
243
244
CIRCLE_ARTIFACTS : /tmp/circleci-artifacts/3_8
244
245
CIRCLE_TEST_REPORTS : /tmp/circleci-test-results/3_8
245
- VERSION : 0.6.3
246
+ VERSION : 0.7.1
246
247
PANDOC_RELEASES_URL : https://github.com/jgm/pandoc/releases
247
248
YARN_STATIC_DIR : notebooker/web/static/
248
249
IMAGE_NAME : mangroup/notebooker
@@ -256,7 +257,7 @@ jobs:
256
257
environment :
257
258
CIRCLE_ARTIFACTS : /tmp/circleci-artifacts/3_11
258
259
CIRCLE_TEST_REPORTS : /tmp/circleci-test-results/3_11
259
- VERSION : 0.6.3
260
+ VERSION : 0.7.1
260
261
PANDOC_RELEASES_URL : https://github.com/jgm/pandoc/releases
261
262
YARN_STATIC_DIR : notebooker/web/static/
262
263
IMAGE_NAME : mangroup/notebooker
0 commit comments