diff --git a/README.md b/README.md index 6b826ca..f9b1a50 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@

- GitHub - Documentation + GitHub - Documentation

@@ -77,18 +77,18 @@ repo_count_with_math = sum([ print(f'{repo_count_with_math} out of {len(repo_features)} repos use math') ``` -![Animated GIF of CodeSurvey demo on the command-line](https://when-of-python.github.io/codesurvey/images/codesurvey-demo.gif) +![Animated GIF of CodeSurvey demo on the command-line](https://lean-python-org.github.io/codesurvey/images/codesurvey-demo.gif) * For more Sources of repositories, see [Source - docs](https://when-of-python.github.io/codesurvey/sources/core) + docs](https://lean-python-org.github.io/codesurvey/sources/core) * For more Analyzers and FeatureFinders, see [Analyzer - docs](https://when-of-python.github.io/codesurvey/analyzers/core) + docs](https://lean-python-org.github.io/codesurvey/analyzers/core) * For more options and methods for inspecting results, see - [`CodeSurvey` docs](https://when-of-python.github.io/codesurvey/core) + [`CodeSurvey` docs](https://lean-python-org.github.io/codesurvey/core) * For details on directly inspecting the sqlite database of survey - results see [Database docs](https://when-of-python.github.io/codesurvey/database) + results see [Database docs](https://lean-python-org.github.io/codesurvey/database) * More examples can be found in - [examples](https://github.com/when-of-python/codesurvey/tree/main/examples) + [examples](https://github.com/lean-python-org/codesurvey/tree/main/examples) ## Contributing diff --git a/codesurvey/__init__.py b/codesurvey/__init__.py index 0edff58..d01564d 100644 --- a/codesurvey/__init__.py +++ b/codesurvey/__init__.py @@ -20,7 +20,7 @@ """ -__version__ = '0.1.4' +__version__ = '0.1.5' from .core import CodeSurvey from .database import RepoFeature, CodeFeature diff --git a/examples/basic.py b/examples/basic.py index 91ace12..8969202 100644 --- a/examples/basic.py +++ b/examples/basic.py @@ -15,7 +15,7 @@ '.', ]), GitSource([ - 'https://github.com/when-of-python/blog.git', + 'https://github.com/lean-python-org/blog.git', ]), GithubSampleSource(language='python'), ], diff --git a/mkdocs.yml b/mkdocs.yml index ffe24b4..f6267d9 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,5 +1,5 @@ site_name: CodeSurvey -repo_url: https://github.com/when-of-python/codesurvey/ +repo_url: https://github.com/lean-python-org/codesurvey/ site_description: Documentation for CodeSurvey nav: - README: 'README.md' diff --git a/pyproject.toml b/pyproject.toml index cfcf605..03c2708 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,11 +1,11 @@ [tool.poetry] name = "codesurvey" -version = "0.1.4" +version = "0.1.5" description = "Analyse source code repositories for language feature and library usage." license = "GPL-3.0-only" authors = ["Ben Denham ", "Grant Paton-Simpson "] readme = "README.md" -repository = "https://github.com/when-of-python/codesurvey" +repository = "https://github.com/lean-python-org/codesurvey" classifiers = [ "Development Status :: 2 - Pre-Alpha", "Intended Audience :: Developers", diff --git a/tests/test_codesurvey.py b/tests/test_codesurvey.py index c4737df..9382cd0 100644 --- a/tests/test_codesurvey.py +++ b/tests/test_codesurvey.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == '0.1.4' + assert __version__ == '0.1.5'