-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8dea126
commit 6569b0e
Showing
5 changed files
with
7 additions
and
5 deletions.
There are no files selected for viewing
2 changes: 2 additions & 0 deletions
2
docspec-python/.changelog/_unreleased.toml → docspec-python/.changelog/2.0.2.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
release-date = "2022-07-18" | ||
|
||
[[entries]] | ||
id = "9698224d-eca1-41c5-9cf5-c04d34a607fe" | ||
type = "fix" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "docspec-python" | ||
version = "2.0.1" | ||
version = "2.0.2" | ||
description = "A parser based on lib2to3 producing docspec data from Python source code." | ||
authors = ["Niklas Rosenstein <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -10,7 +10,7 @@ packages = [{ include = "docspec_python", from="src" }] | |
|
||
[tool.poetry.dependencies] | ||
python = "^3.7" | ||
docspec = "^2.0.1" | ||
docspec = "^2.0.2" | ||
"nr.util" = ">=0.7.0" | ||
|
||
[tool.poetry.dev-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ | |
# IN THE SOFTWARE. | ||
|
||
__author__ = 'Niklas Rosenstein <[email protected]>' | ||
__version__ = '2.0.1' | ||
__version__ = '2.0.2' | ||
__all__ = [ | ||
'Parser', | ||
'ParserOptions', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "docspec" | ||
version = "2.0.1" | ||
version = "2.0.2" | ||
description = "Docspec is a JSON object specification for representing API documentation of programming languages." | ||
authors = ["Niklas Rosenstein <[email protected]>"] | ||
license = "MIT" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ | |
# IN THE SOFTWARE. | ||
|
||
__author__ = 'Niklas Rosenstein <[email protected]>' | ||
__version__ = '2.0.1' | ||
__version__ = '2.0.2' | ||
__all__ = [ | ||
'Location', | ||
'Decoration', | ||
|