Skip to content
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

chore: version bump 2.1.0 #48

Merged
merged 2 commits into from
Sep 17, 2024
Merged
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 2.1.0 (2024-09-17)

### Feat

- support unauthenticated access to the Github API

## 2.0.0 (2024-09-13)

### Feat
Expand Down
5 changes: 2 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,12 @@ uv tool install commitizen
Then create the version bump commit:

```
cz changelog
cz bump
git show
```

Create a pull request and get the commit merged into `main`. Once merged, make sure
your tag is pushed upstream:
Verify the commit is what you expect, then create a pull request and get the
commit merged into `main`. Once merged, push your tag upstream:

```
git push upstream --tags
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "simple-github"
description = "A simple Github client that only provides auth and access to the REST and GraphQL APIs."
version = "2.0.0"
version = "2.1.0"
authors = [
{ name = "Mozilla Release Engineering", email = "[email protected]"}
]
Expand Down Expand Up @@ -45,6 +45,9 @@ dev-dependencies = [
[tool.commitizen]
bump_message = "chore: version bump $new_version"
changelog_incremental = true
gpg_sign = true
tag_format = "$version"
update_changelog_on_bump = true
version_provider = "pep621"

[tool.black]
Expand Down
Loading