Skip to content

Commit

Permalink
Merge pull request #22 from BBVA/feature/insert_cstdint
Browse files Browse the repository at this point in the history
Feature/insert cstdint
  • Loading branch information
sbasaldua authored Mar 14, 2024
2 parents d8af3f5 + 7bcfecc commit 1d5895a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'

[project]
name = 'mercury-reels'
version = '1.4.4'
version = '1.4.5'
description = 'Reels helps identify patterns in event data and can predict target events.'
license = {file = "LICENSE.txt"}
requires-python = '>=3.8'
Expand Down
2 changes: 1 addition & 1 deletion src/reels/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def destroy_binary_image_iterator(image_id):


# The source version file is <proj>/src/version.py, anything else is auto generated.
__version__ = '1.4.4'
__version__ = '1.4.5'

from reels.Clients import Clients
from reels.Events import Events
Expand Down
1 change: 1 addition & 0 deletions src/reels/reels.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
#include <time.h>
#include <vector>
#include <stdarg.h>
#include <cstdint>

#ifdef DEBUG
#include <iostream>
Expand Down
2 changes: 1 addition & 1 deletion src/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# The source version file is <proj>/src/version.py, anything else is auto generated.
__version__ = '1.4.4'
__version__ = '1.4.5'

0 comments on commit 1d5895a

Please sign in to comment.