diff --git a/README.md b/README.md index 9044e7a..22fc4c8 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,8 @@ This Useful for usage with tools like [LiteX](https://github.com/enjoy-digital/litex.git). The data files can be found under the Python module `pythondata_cpu_mor1kx`. The -`pythondata_cpu_mor1kx.location` value can be used to find the files on the file system. +`pythondata_cpu_mor1kx.data_location` value can be used to find the files on the file +system. Example of getting the data file directly; ```python diff --git a/pythondata_cpu_mor1kx/__init__.py b/pythondata_cpu_mor1kx/__init__.py index 779ff89..42d1f7f 100644 --- a/pythondata_cpu_mor1kx/__init__.py +++ b/pythondata_cpu_mor1kx/__init__.py @@ -4,11 +4,11 @@ src = "https://github.com/openrisc/mor1kx.git" # Module version -version_str = "5.0.post124" -version_tuple = (5, 0, 124) +version_str = "5.0.post125" +version_tuple = (5, 0, 125) try: from packaging.version import Version as V - pversion = V("5.0.post124") + pversion = V("5.0.post125") except ImportError: pass @@ -37,11 +37,11 @@ """ # Tool version info -tool_version_str = "0.0.post48" -tool_version_tuple = (0, 0, 48) +tool_version_str = "0.0.post49" +tool_version_tuple = (0, 0, 49) try: from packaging.version import Version as V - ptool_version = V("0.0.post48") + ptool_version = V("0.0.post49") except ImportError: pass