Skip to content

Commit

Permalink
Prepare 0.3.0 release.
Browse files Browse the repository at this point in the history
Bump version number, update copyright notices, and add section in NEWS
file for the new release.
  • Loading branch information
gouttegd committed Jul 10, 2023
1 parent 29b154a commit 4aec0d6
Show file tree
Hide file tree
Showing 10 changed files with 50 additions and 32 deletions.
13 changes: 13 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
Changes in grainyhead-0.3.0 (2023-07-10)
----------------------------------------

* Do not use fixed-width columns when producing Markdown output.
* The `user:*` syntactic sugar now produces reports for all users who
ever contributed to the repository, instead of collaborators.
* The `user:*` syntactic sugar is expanded to allow specifying a team
name, as in `user:*<team_name>`, to produce reports for all users
belonging to the specified team.
* Four “pseudo-team names” are recognized: `__contributors`,
`__committers`, `__commenters`, and `__collaborators`.


Changes in grainyhead-0.2.1 (2023-03-22)
----------------------------------------

Expand Down
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,17 +92,17 @@ over a given period of time:
$ grainyhead metrics
From 2021-09-02 to 2021-12-01
| Event | Total | Internal | Inte (%) | External | Exte (%) |
| -------------------- | ----- | -------- | -------- | -------- | -------- |
| Contributors | 24 | 15 | 62.50 | 9 | 37.50 |
| Issues opened | 71 | 64 | 90.14 | 7 | 9.86 |
| Issues closed | 89 | 77 | 86.52 | 12 | 13.48 |
| Pull requests opened | 86 | 68 | 79.07 | 18 | 20.93 |
| Pull requests closed | 94 | 78 | 82.98 | 16 | 17.02 |
| Pull requests merged | 79 | 65 | 82.28 | 14 | 17.72 |
| Comments | 476 | 412 | 86.55 | 64 | 13.45 |
| Commits | 232 | 201 | 86.64 | 31 | 13.36 |
| Releases | 4 | 4 | 100.00 | 0 | 0.00 |
| Event | Total | Internal | Internal (%) | External | Externam (%) |
| -------- | -------- | -------- | -------- | -------- | -------- |
| Contributors | 24 | 15 | 62.50 | 9 | 37.50 |
| Issues opened | 71 | 64 | 90.14 | 7 | 9.86 |
| Issues closed | 89 | 77 | 86.52 | 12 | 13.48 |
| Pull requests opened | 86 | 68 | 79.07 | 18 | 20.93 |
| Pull requests closed | 94 | 78 | 82.98 | 16 | 17.02 |
| Pull requests merged | 79 | 65 | 82.28 | 14 | 17.72 |
| Comments | 476 | 412 | 86.55 | 64 | 13.45 |
| Commits | 232 | 201 | 86.64 | 31 | 13.36 |
| Releases | 4 | 4 | 100.00 | 0 | 0.00 |
```


Expand Down
33 changes: 19 additions & 14 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
source_suffix = '.rst'
master_doc = 'index'

copyright = u'2021,2022 Damien Goutte-Gattat'
copyright = u'2021,2022,2023 Damien Goutte-Gattat'
author = u'Damien Goutte-Gattat <dpg44@cam.ac.uk>'

language = 'en'
Expand All @@ -24,30 +24,35 @@

latex_engine = 'lualatex'

latex_elements = {
'papersize': 'a4paper',
'pointsize': '10pt'
}
latex_elements = {'papersize': 'a4paper', 'pointsize': '10pt'}

# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'GrainyHead.tex', u'GrainyHead Documentation',
u'Damien Goutte-Gattat', 'manual'),
(
master_doc,
'GrainyHead.tex',
u'GrainyHead Documentation',
u'Damien Goutte-Gattat',
'manual',
),
]

# -- Options for manual page output ---------------------------------------

man_pages = [
(master_doc, 'grainyhead', u'GrainyHead Documentation',
[author], 1)
]
man_pages = [(master_doc, 'grainyhead', u'GrainyHead Documentation', [author], 1)]

# -- Options for Texinfo output -------------------------------------------

texinfo_documents = [
(master_doc, 'GrainyHead', u'GrainyHead Documentation',
author, 'GrainyHead', 'Helper tools for GitHub.',
'Miscellaneous'),
(
master_doc,
'GrainyHead',
u'GrainyHead Documentation',
author,
'GrainyHead',
'Helper tools for GitHub.',
'Miscellaneous',
),
]
2 changes: 1 addition & 1 deletion docs/metrics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Here is an example of a default report:
From 2021-09-02 to 2021-12-01
| Event | Total | Internal | Internal (%) | External | External (%) |
| -------- | ----- | -------- | -------- | -------- | -------- |
| -------- | -------- | -------- | -------- | -------- | -------- |
| Contributors | 24 | 15 | 62.50 | 9 | 37.50 |
| Issues opened | 71 | 64 | 90.14 | 7 | 9.86 |
| Issues closed | 89 | 77 | 86.52 | 12 | 13.48 |
Expand Down
2 changes: 1 addition & 1 deletion incenp/grainyhead/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.2.1'
__version__ = '0.3.0'
2 changes: 1 addition & 1 deletion incenp/grainyhead/caching.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# grainyhead - Helper tools for GitHub
# Copyright © 2021 Damien Goutte-Gattat
# Copyright © 2021,2023 Damien Goutte-Gattat
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion incenp/grainyhead/main.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# grainyhead - Helper tools for GitHub
# Copyright © 2021,2022 Damien Goutte-Gattat
# Copyright © 2021,2022,2023 Damien Goutte-Gattat
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion incenp/grainyhead/metrics.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# grainyhead - Helper tools for GitHub
# Copyright © 2021,2022 Damien Goutte-Gattat
# Copyright © 2021,2022,2023 Damien Goutte-Gattat
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion incenp/grainyhead/providers.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# grainyhead - Helper tools for GitHub
# Copyright © 2021,2022 Damien Goutte-Gattat
# Copyright © 2021,2022,2023 Damien Goutte-Gattat
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion incenp/grainyhead/repository.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# grainyhead - Helper tools for GitHub
# Copyright © 2021,2022 Damien Goutte-Gattat
# Copyright © 2021,2022,2023 Damien Goutte-Gattat
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
Expand Down

0 comments on commit 4aec0d6

Please sign in to comment.