diff --git a/CMakeLists.txt b/CMakeLists.txt index 6f66535..61686a6 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.4 + VERSION 0.0.5 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 9e6832e..8146501 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.4" -__quokka_version__ = "0.0.4" +__version__ = "1.0.5" +__quokka_version__ = "0.0.5" import quokka.analysis import quokka.backends diff --git a/setup.py b/setup.py index 4da51a6..6e29cc0 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ setup( name="quokka-project", - version="1.0.4", + version="1.0.5", author="Alexis Challande", author_email="achallande@quarkslab.com", url="https://github.com/quarkslab/quokka",