Skip to content

Commit

Permalink
Bump version: 0.14.3 → 0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rth committed May 20, 2020
1 parent 75bfc5e commit 9400064
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.14.3
current_version = 0.15.0
commit = True
tag = True
tag_name = {new_version}
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -103,7 +103,7 @@ build/pyodide_dev.js: src/pyodide.js

build/pyodide.js: src/pyodide.js
cp $< $@
sed -i -e 's#{{DEPLOY}}#https://pyodide-cdn2.iodide.io/v0.14.3/full/#g' $@
sed -i -e 's#{{DEPLOY}}#https://pyodide-cdn2.iodide.io/v0.15.0/full/#g' $@

sed -i -e "s#{{ABI}}#$(PYODIDE_PACKAGE_ABI)#g" $@

Expand All @@ -121,7 +121,7 @@ build/renderedhtml.css: src/renderedhtml.less

build/webworker.js: src/webworker.js
cp $< $@
sed -i -e 's#{{DEPLOY}}#https://pyodide-cdn2.iodide.io/v0.14.3/full/#g' $@
sed -i -e 's#{{DEPLOY}}#https://pyodide-cdn2.iodide.io/v0.15.0/full/#g' $@

build/webworker_dev.js: src/webworker.js
cp $< $@
Expand Down
4 changes: 2 additions & 2 deletions docs/pypi.md
Expand Up @@ -73,9 +73,9 @@ javascript"](./using_pyodide_from_javascript.html) a complete example would be,
<body>
<script type="text/javascript">
// set the pyodide files URL (packages.json, pyodide.asm.data etc)
window.languagePluginUrl = 'https://pyodide-cdn2.iodide.io/v0.14.3/full/';
window.languagePluginUrl = 'https://pyodide-cdn2.iodide.io/v0.15.0/full/';
</script>
<script type="text/javascript" src="https://pyodide-cdn2.iodide.io/v0.14.3/full/pyodide.js"></script>
<script type="text/javascript" src="https://pyodide-cdn2.iodide.io/v0.15.0/full/pyodide.js"></script>
<script type="text/javascript">
pythonCode = `
def do_work(*args):
Expand Down
6 changes: 3 additions & 3 deletions docs/using_pyodide_from_javascript.md
Expand Up @@ -8,7 +8,7 @@ Iodide](using_pyodide_from_iodide.md).

To include Pyodide in your project you can use the following CDN URL,

https://pyodide-cdn2.iodide.io/v0.14.3/full/pyodide.js
https://pyodide-cdn2.iodide.io/v0.15.0/full/pyodide.js

You can also download a release from
[Github releases](https://github.com/iodide-project/pyodide/releases)
Expand Down Expand Up @@ -49,9 +49,9 @@ Create and save a test `index.html` page with the following contents:
<head>
<script type="text/javascript">
// set the pyodide files URL (packages.json, pyodide.asm.data etc)
window.languagePluginUrl = 'https://pyodide-cdn2.iodide.io/v0.14.3/full/';
window.languagePluginUrl = 'https://pyodide-cdn2.iodide.io/v0.15.0/full/';
</script>
<script src="https://pyodide-cdn2.iodide.io/v0.14.3/full/pyodide.js"></script>
<script src="https://pyodide-cdn2.iodide.io/v0.15.0/full/pyodide.js"></script>
</head>
<body>
Pyodide test page <br>
Expand Down
2 changes: 1 addition & 1 deletion src/pyodide.py
Expand Up @@ -7,7 +7,7 @@
from textwrap import dedent


__version__ = '0.14.3'
__version__ = '0.15.0'


def open_url(url):
Expand Down

0 comments on commit 9400064

Please sign in to comment.