Skip to content

Commit

Permalink
Add deployment notes
Browse files Browse the repository at this point in the history
  • Loading branch information
tomquirk committed Apr 28, 2023
1 parent 37e5204 commit e66bb5e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,3 +216,9 @@ List(v->PEOPLE)
```

It could be possible to document (and implement a nice interface for) this query language - as we add more endpoints to this project, I'm sure it will become more clear if such a thing would be possible (and if it's worth it).

### Releasing a new version

1. Bump __version__ in `__init__.py`
1. `python3 setup.py sdist bdist_wheel`
1. `python3 -m twine upload dist/*`
2 changes: 1 addition & 1 deletion linkedin_api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from .linkedin import Linkedin

__title__ = "linkedin_api"
__version__ = "2.0.0"
__version__ = "2.0.1"
__description__ = "Python Wrapper for the Linkedin API"

__license__ = "MIT"
Expand Down

0 comments on commit e66bb5e

Please sign in to comment.