Skip to content

Commit

Permalink
feat: Bump to 0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
A. Challande committed Nov 17, 2022
1 parent b6232d0 commit cd0dbaa
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions bindings/python/quokka/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/quokka/program.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__}"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
name="quokka-project",
author="Alexis <dm> 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",
Expand Down

0 comments on commit cd0dbaa

Please sign in to comment.