Skip to content

update changelog and Contributing.md #60

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## v0.4.6

- update-changelog

## v0.4.5

- patch/python publish in #59

## v0.4.4

- Update README to document custom headers in #51
- updating pre-commit in #56
- add passing options in #57

## v0.4.3

- Stoping Using Root Logger with One-off Logging Setup #44
Expand Down
11 changes: 11 additions & 0 deletions docs/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,14 @@ Take a peek at the [Code of Conduct](CODE_OF_CONDUCT.md) document for more infor
# Where can I ask for help?

This project is pretty new, so for now feel free to add an issue into the project. Otherwise you can always email us at opensource@prodigygame.com for questions. Maybe one day we'll create a slack group for this project.

# Releases

1. `make gen-changelog`
2. Update the `setup.py` with the new release version (eg; `version="0.4.6"`)
3. Draft a new [release](https://github.com/prodigyeducation/python-graphql-client/releases)
1. The release title and tag should be the following format that corresponds with the `version` in `setup.py`; `vN.N.N`
2. Generate Release Notes
4. Set as a pre-release and review
5. Set as the latest release and publish
6. Verify the github action for release worked [pythonpublish](https://github.com/prodigyeducation/python-graphql-client/actions/workflows/pythonpublish.yml)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name="python_graphql_client",
version="0.4.3",
version="0.4.6",
description="Python GraphQL Client",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down