-
Notifications
You must be signed in to change notification settings - Fork 3
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
Issue 91: CHANGELOG.rst: Update for initial release #93
Conversation
4fefddf
to
98bfb17
Compare
… let me fix that bad spelling. :-) |
Since I'm pretty tired let me come back to review this tomorrow, if you don't mind. |
What do you think about adding extra changelog entries for all the features that came before? Basically I'm thinking that we just go back and create a quick changelog fragment for each notable issue that was solved in getting up to this point - it'll be easy enough to get a list of the issues and should be no problem to pick out the notable ones - and then run |
Yep… might be able to pull out a list of the issues fixed through the Github APIs to dump the material out. |
Fumbled my way through it… # Type queries here, and you will see intelligent autosuggestions
# aware of GitHub's current GraphQL schema, equipped with live
# syntax and validation errors highlighted within the text. We'll
# get you started with a simple query showing your username!
query {
repository(owner:"diazona", name:"setuptools-pyproject-migration") {
issues(states:CLOSED, first:100) {
nodes {
number
title
labels(first:10) {
nodes {
name
}
}
}
}
}
} {
"data": {
"repository": {
"issues": {
"nodes": [
{
"number": 9,
"title": "Update development status to 3",
"labels": {
"nodes": []
}
},
{
"number": 10,
"title": "Add Stuart as a collaborator on PyPI",
"labels": {
"nodes": []
}
},
{
"number": 18,
"title": "Set up documentation on ReadTheDocs",
"labels": {
"nodes": [
{
"name": "documentation"
}
]
}
},
{
"number": 19,
"title": "Add Stuart as a collaborator on ReadTheDocs",
"labels": {
"nodes": []
}
},
{
"number": 20,
"title": "Rewrite release logic",
"labels": {
"nodes": []
}
},
{
"number": 28,
"title": "Support authors and maintainers",
"labels": {
"nodes": [
{
"name": "enhancement"
},
{
"name": "good first issue"
},
{
"name": "setuptools-fields"
}
]
}
},
{
"number": 29,
"title": "Support classifiers",
"labels": {
"nodes": [
{
"name": "enhancement"
},
{
"name": "good first issue"
},
{
"name": "setuptools-fields"
}
]
}
},
{
"number": 30,
"title": "Support description",
"labels": {
"nodes": [
{
"name": "enhancement"
},
{
"name": "good first issue"
},
{
"name": "setuptools-fields"
}
]
}
},
{
"number": 31,
"title": "Support keywords",
"labels": {
"nodes": [
{
"name": "enhancement"
},
{
"name": "good first issue"
},
{
"name": "setuptools-fields"
}
]
}
},
{
"number": 32,
"title": "Support license",
"labels": {
"nodes": [
{
"name": "enhancement"
},
{
"name": "good first issue"
},
{
"name": "setuptools-fields"
}
]
}
},
{
"number": 33,
"title": "Support readme",
"labels": {
"nodes": [
{
"name": "enhancement"
},
{
"name": "good first issue"
},
{
"name": "setuptools-fields"
}
]
}
},
{
"number": 34,
"title": "Support requires-python",
"labels": {
"nodes": [
{
"name": "enhancement"
},
{
"name": "good first issue"
},
{
"name": "setuptools-fields"
}
]
}
},
{
"number": 35,
"title": "Support urls",
"labels": {
"nodes": [
{
"name": "enhancement"
},
{
"name": "good first issue"
},
{
"name": "setuptools-fields"
}
]
}
},
{
"number": 36,
"title": "Support entry points",
"labels": {
"nodes": [
{
"name": "enhancement"
},
{
"name": "good first issue"
},
{
"name": "setuptools-fields"
}
]
}
},
{
"number": 37,
"title": "Support extras",
"labels": {
"nodes": [
{
"name": "enhancement"
},
{
"name": "good first issue"
},
{
"name": "setuptools-fields"
}
]
}
},
{
"number": 38,
"title": "Enable pre-commit.ci",
"labels": {
"nodes": []
}
},
{
"number": 39,
"title": "Separate static checks from pytest",
"labels": {
"nodes": [
{
"name": "bug"
}
]
}
},
{
"number": 43,
"title": "Configure trusted publishing",
"labels": {
"nodes": []
}
},
{
"number": 61,
"title": "Remove maximum setuptools version once the circular import issue is resolved",
"labels": {
"nodes": []
}
},
{
"number": 71,
"title": "Write some meaningful documentation",
"labels": {
"nodes": [
{
"name": "documentation"
}
]
}
},
{
"number": 86,
"title": "Slow tests do not run from manually triggered workflows",
"labels": {
"nodes": []
}
},
{
"number": 88,
"title": "Enable towncrier",
"labels": {
"nodes": [
{
"name": "documentation"
}
]
}
}
]
}
}
}
}
|
98bfb17
to
c46b9ba
Compare
I deleted some trivial issues like #10… but that brought everything across. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah sure, this works. (I was also thinking it'd be within the scope of doing manually, but it's all good.)
Release 0.1.0 is imminent now.
Closes issue #91.