Skip to content

Commit

Permalink
feat(build): update readme and version
Browse files Browse the repository at this point in the history
  • Loading branch information
rohaquinlop committed Feb 27, 2024
1 parent 7afe320 commit 40420cf
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
[package]
name = "complexipy"
version = "0.2.1"
version = "0.2.2"
edition = "2021"
authors = ["Robin Quintero <[email protected]>"]
license = "MIT"
description = "An extremely fast Python library to calculate the cognitive complexity of python files, written in Rust."
readme = "README.md"
homepage = "https://github.com/rohaquinlop/complexipy"
documentation = "https://rohaquinlop.github.io/complexipy/"
repository = "https://github.com/rohaquinlop/complexipy"
exclude = ["/tests", ".github", ".gitignore", "targets"]

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# complexipy

<p align="center">
<a href="https://rohaquinlop.github.io/complexipy/"><img src="docs/img/logo-vector.svg" alt="complexipy"></a>
<a href="https://rohaquinlop.github.io/complexipy/"><img src="https://raw.githubusercontent.com/rohaquinlop/complexipy/main/docs/img/logo-vector.svg" alt="complexipy"></a>
</p>

<p align="center">
Expand Down Expand Up @@ -79,7 +79,7 @@ The cognitive complexity of the file is 1, and the output of the command
`complexipy path/to/file.py` will be:

```txt
─────────────────────── complexipy 0.2.1 🐙 ───────────────────────
─────────────────────── complexipy 0.2.2 🐙 ───────────────────────
- Finished analysis in test_decorator.py
──────────────────── 🎉 Analysis completed!🎉 ─────────────────────
Summary
Expand Down
2 changes: 1 addition & 1 deletion complexipy/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
root_dir = Path(__file__).resolve().parent.parent
app = typer.Typer(name="complexipy")
console = Console()
version = "0.2.1"
version = "0.2.2"


@app.command()
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ The cognitive complexity of the file is 1, and the output of the command
`complexipy path/to/file.py` will be:

```txt
─────────────────────── complexipy 0.2.1 🐙 ───────────────────────
─────────────────────── complexipy 0.2.2 🐙 ───────────────────────
- Finished analysis in test_decorator.py
──────────────────── 🎉 Analysis completed!🎉 ─────────────────────
Summary
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ build-backend = "maturin"

[project]
name = "complexipy"
keywords = ["cognitive", "complexity", "cognitive complexity", "rust", "fast"]
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Rust",
Expand Down

0 comments on commit 40420cf

Please sign in to comment.