Skip to content

Commit

Permalink
version 0.39.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rmorshea committed Jun 20, 2022
1 parent 8e3b0b1 commit d547122
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 11 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.38.1
0.39.0
10 changes: 8 additions & 2 deletions docs/source/about/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@ more info, see the :ref:`Contributor Guide <Creating a Changelog Entry>`.
Unreleased
----------

No changes.


v0.39.0
-------
:octicon:`milestone` *released on 2022-06-20*

**Fixed**

- :pull:`763` - ``No module named 'idom.server'`` from ``idom.run``
Expand All @@ -36,8 +43,7 @@ Unreleased
- ``ServerFixture -> BackendFixture``
- ``DisplayFixture.server -> DisplayFixture.backend``

- :pull:`765` - ``exports_default`` parameter is not longer required for
``module_from_template`` when exporting ``default``.
- :pull:`765` - ``exports_default`` parameter is removed from ``module_from_template``.

**Added**

Expand Down
8 changes: 4 additions & 4 deletions src/client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"publish": "npm --workspaces publish",
"test": "npm --workspaces test"
},
"version": "0.38.1",
"version": "0.39.0",
"workspaces": [
"./packages/*"
]
Expand Down
2 changes: 1 addition & 1 deletion src/client/packages/idom-app-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
"format": "prettier --write ./src",
"test": "echo 'no tests'"
},
"version": "0.38.1"
"version": "0.39.0"
}
2 changes: 1 addition & 1 deletion src/client/packages/idom-client-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
"test": "uvu tests"
},
"type": "module",
"version": "0.38.1"
"version": "0.39.0"
}
2 changes: 1 addition & 1 deletion src/idom/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@


__author__ = "idom-team"
__version__ = "0.38.1" # DO NOT MODIFY
__version__ = "0.39.0" # DO NOT MODIFY

__all__ = [
"component",
Expand Down

0 comments on commit d547122

Please sign in to comment.