diff --git a/CMakeLists.txt b/CMakeLists.txt index 207a9974..6f66535c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ endif () project(quokka DESCRIPTION "Quokka: A Fast and Accurate Binary Exporter" - VERSION 0.0.3 + VERSION 0.0.4 LANGUAGES CXX) list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake) diff --git a/bindings/python/quokka/__init__.py b/bindings/python/quokka/__init__.py index 3146349f..9e6832e2 100644 --- a/bindings/python/quokka/__init__.py +++ b/bindings/python/quokka/__init__.py @@ -19,8 +19,8 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "1.0.3" -__quokka_version__ = "0.0.3" +__version__ = "1.0.4" +__quokka_version__ = "0.0.4" import quokka.analysis import quokka.backends diff --git a/bindings/python/quokka/program.py b/bindings/python/quokka/program.py index 5ee0efab..188d4ae7 100644 --- a/bindings/python/quokka/program.py +++ b/bindings/python/quokka/program.py @@ -102,7 +102,7 @@ def __init__( # Check if it matches the version if self.proto.exporter_meta.version != quokka.__quokka_version__: - raise quokka.QuokkaError( + self.logger.warning( "The exported file has been generated by a different version of Quokka." f" The file has been generated by Quokka {self.proto.exporter_meta.version}" f" while python-quokka uses {quokka.__quokka_version__}" diff --git a/setup.py b/setup.py index 4ae797cd..a3da74d6 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ name="quokka-project", author="Alexis Challande", author_email="achallande@quarkslab.com", - version="1.0.3", + version="1.0.4", description="Quokka : A Fast and Accurate Binary Exporter", long_description=readme, long_description_content_type="text/markdown",