Skip to content

Commit

Permalink
Update github organisation name and update version to 0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-denham committed Aug 10, 2024
1 parent 8f6c2e5 commit 3c4a6e7
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</a>

<p>
<a href="https://github.com/when-of-python/codesurvey">GitHub</a> - <a href="https://when-of-python.github.io/codesurvey">Documentation</a>
<a href="https://github.com/lean-python-org/codesurvey">GitHub</a> - <a href="https://lean-python-org.github.io/codesurvey">Documentation</a>
</p>

</div>
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion codesurvey/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"""

__version__ = '0.1.4'
__version__ = '0.1.5'

from .core import CodeSurvey
from .database import RepoFeature, CodeFeature
Expand Down
2 changes: 1 addition & 1 deletion examples/basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
'.',
]),
GitSource([
'https://github.com/when-of-python/blog.git',
'https://github.com/lean-python-org/blog.git',
]),
GithubSampleSource(language='python'),
],
Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <ben@denham.nz>", "Grant Paton-Simpson <grant@p-s.co.nz>"]
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",
Expand Down
2 changes: 1 addition & 1 deletion tests/test_codesurvey.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


def test_version():
assert __version__ == '0.1.4'
assert __version__ == '0.1.5'

0 comments on commit 3c4a6e7

Please sign in to comment.