diff --git a/CITATION.cff b/CITATION.cff index 27d6630..7602ad0 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -8,5 +8,5 @@ authors: given-names: "Rodrigo Juliani" orcid: https://orcid.org/0000-0002-1688-6155 title: "MicroView" -version: 0.10.0 +version: 0.10.1 url: "https://github.com/jvfe/microview" diff --git a/microview/__init__.py b/microview/__init__.py index 82509db..9ccd8b8 100644 --- a/microview/__init__.py +++ b/microview/__init__.py @@ -1,4 +1,4 @@ name = "microview" __author__ = """João Vitor F. Cavalcante""" __email__ = "jvfe@ufrn.edu.br" -__version__ = "0.10.0" +__version__ = "0.10.1" diff --git a/setup.cfg b/setup.cfg index bec5e04..040fb8b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.0 +current_version = 0.10.1 commit = True tag = True diff --git a/setup.py b/setup.py index cd40d07..f421e55 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ "rich", "rich-click", "click-option-group", - "frictionless==4.32.0", + "frictionless>=4.32.0, <5", ] test_requirements = [ @@ -64,6 +64,6 @@ "Documentation": "https://jvfe.github.io/microview/", "Source Code": "https://github.com/jvfe/microview", }, - version="0.10.0", + version="0.10.1", zip_safe=False, )