diff --git a/codesurvey/__init__.py b/codesurvey/__init__.py index 5a30292..0edff58 100644 --- a/codesurvey/__init__.py +++ b/codesurvey/__init__.py @@ -20,7 +20,7 @@ """ -__version__ = '0.1.3' +__version__ = '0.1.4' from .core import CodeSurvey from .database import RepoFeature, CodeFeature diff --git a/pyproject.toml b/pyproject.toml index f79f93c..cfcf605 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "codesurvey" -version = "0.1.3" +version = "0.1.4" description = "Analyse source code repositories for language feature and library usage." license = "GPL-3.0-only" authors = ["Ben Denham ", "Grant Paton-Simpson "] diff --git a/tests/test_codesurvey.py b/tests/test_codesurvey.py index 29c4b5e..c4737df 100644 --- a/tests/test_codesurvey.py +++ b/tests/test_codesurvey.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == '0.1.3' + assert __version__ == '0.1.4'