Skip to content

Commit 961b736

Browse files
authored
Bump version to 4.0.0 (#14)
1 parent ffcabcf commit 961b736

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
The aim of this repository is to exemplify how to develop a new wrapper for
44
SimPhoNy. **Before you start**, please have a look at the
5-
[SimPhoNy documentation](https://simphony.readthedocs.io/en/v4.0.0rc4/)
5+
[SimPhoNy documentation](https://simphony.readthedocs.io/en/v4.0.0/)
66
(in particular the
7-
[wrapper development section](https://simphony.readthedocs.io/en/v4.0.0rc4/developers/wrappers.html)).
7+
[wrapper development section](https://simphony.readthedocs.io/en/v4.0.0/developers/wrappers.html)).
88

99
Clone this repository to use it as a template to create your own
1010
wrapper. It provides project configuration files, a folder structure, an

package_name/wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class SimulationWrapper(Wrapper):
1313
1414
Note: This implementation only makes use of the mandatory wrapper methods,
1515
as well as the `compute` method. Visit the SimPhoNy documentation
16-
https://simphony.readthedocs.io/en/v4.0.0rc4/developers/wrappers.html
16+
https://simphony.readthedocs.io/en/v4.0.0/developers/wrappers.html
1717
to learn more about the additional possibilities and the meaning of each
1818
method.
1919
"""

tests/test_integration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def test_types_engine(self):
5959
wrapper = session.driver.interface
6060
# read the diagram on the SimPhoNy documentation to understand how the
6161
# wrapper object was retrieved from the session object:
62-
# https://simphony.readthedocs.io/en/v4.0.0rc4/developers/
62+
# https://simphony.readthedocs.io/en/v4.0.0/developers/
6363
# wrappers.html#wrapper-abstract-class
6464
session.driver.interface = self._prepare_wrapper_for_types_test(
6565
wrapper

0 commit comments

Comments
 (0)