Skip to content

Commit

Permalink
chore!: Bump version to 0.2.0
Browse files Browse the repository at this point in the history
BREAKING CHANGE: The schema of the `json` export has changed.

Previously...
```json
{
  "./path": {
    "author": 1234
  }
}
```

Now...
```
{
  "./path": {
    "author": {
      "lines": 1234,
      "license": "MIT" // Optional key
    }
  }
}
```
  • Loading branch information
thehale committed Jan 11, 2025
1 parent c8c3164 commit c6e2f4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

[tool.poetry]
name = "git-authorship"
version = "0.1.5"
version = "0.2.0"
description = "Interactive reports showing who wrote each line of code in your git repository."
authors = ["Joseph Hale <[email protected]>"]
license = "MPL-2.0"
Expand Down

0 comments on commit c6e2f4a

Please sign in to comment.