-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* setup rever * add header to changelog * bumped version to 0.5.0 * Updated authorship for 0.5.0 * Updated CHANGELOG for 0.5.0
- Loading branch information
Showing
15 changed files
with
144 additions
and
159 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
- name: Carl Anderson | ||
email: barabo@users.noreply.github.com | ||
num_commits: 1 | ||
first_commit: 2022-07-26 09:56:39 | ||
github: barabo | ||
- name: Andrew Vallette | ||
email: andrewvallette@gmail.com | ||
num_commits: 1 | ||
first_commit: 2022-06-28 20:09:54 | ||
github: AndrewValette | ||
- name: Daniel Holth | ||
email: dholth@anaconda.com | ||
num_commits: 85 | ||
first_commit: 2022-05-18 19:49:18 | ||
github: dholth | ||
- name: jaimergp | ||
email: jaimergp@users.noreply.github.com | ||
num_commits: 1 | ||
first_commit: 2023-08-29 10:56:37 | ||
github: jaimergp | ||
- name: Conda Bot | ||
email: conda-bot@users.noreply.github.com | ||
num_commits: 1 | ||
first_commit: 2022-11-15 10:37:42 | ||
github: conda-bot | ||
aliases: | ||
- 18747875+conda-bot@users.noreply.github.com | ||
- name: Jannis Leidel | ||
email: jannis@leidel.info | ||
num_commits: 5 | ||
first_commit: 2022-05-17 13:35:54 | ||
github: jezdez | ||
- name: conda-bot | ||
email: 18747875+conda-bot@users.noreply.github.com | ||
num_commits: 24 | ||
first_commit: 2023-02-23 19:13:51 | ||
github: conda-bot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -139,3 +139,5 @@ dmypy.json | |
# databases | ||
*.db | ||
*.db-* | ||
|
||
rever/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# This file was autogenerated by rever: https://regro.github.io/rever-docs/ | ||
# This prevent git from showing duplicates with various logging commands. | ||
# See the git documentation for more details. The syntax is: | ||
# | ||
# good-name <good-email> bad-name <bad-email> | ||
# | ||
# You can skip bad-name if it is the same as good-name and is unique in the repo. | ||
# | ||
# This file is up-to-date if the command git log --format="%aN <%aE>" | sort -u | ||
# gives no duplicates. | ||
|
||
Andrew Vallette <andrewvallette@gmail.com> | ||
Carl Anderson <barabo@users.noreply.github.com> | ||
Conda Bot <conda-bot@users.noreply.github.com> 18747875+conda-bot@users.noreply.github.com <conda-bot@users.noreply.github.com> | ||
Daniel Holth <dholth@anaconda.com> | ||
Jannis Leidel <jannis@leidel.info> | ||
conda-bot <18747875+conda-bot@users.noreply.github.com> | ||
jaimergp <jaimergp@users.noreply.github.com> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
All of the people who have made at least one contribution to conda-index. | ||
Authors are sorted alphabetically. | ||
|
||
* Andrew Vallette | ||
* Carl Anderson | ||
* Conda Bot | ||
* Daniel Holth | ||
* Jannis Leidel | ||
* conda-bot | ||
* jaimergp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
$ACTIVITIES = ["authors", "changelog"] | ||
|
||
# Basic settings | ||
$PROJECT = $GITHUB_REPO = $(basename $(git remote get-url origin)).split('.')[0].strip() | ||
$GITHUB_ORG = "conda" | ||
|
||
# Authors settings | ||
$AUTHORS_FILENAME = "AUTHORS.md" | ||
$AUTHORS_SORTBY = "alpha" | ||
|
||
# Changelog settings | ||
$CHANGELOG_FILENAME = "CHANGELOG.md" | ||
$CHANGELOG_PATTERN = r"\[//\]: # \(current developments\)" | ||
$CHANGELOG_HEADER = """[//]: # (current developments) | ||
## $VERSION ($RELEASE_DATE) | ||
""" | ||
$CHANGELOG_CATEGORIES = [ | ||
"Enhancements", | ||
"Bug fixes", | ||
"Deprecations", | ||
"Docs", | ||
"Other", | ||
] | ||
$CHANGELOG_CATEGORY_TITLE_FORMAT = "### {category}\n\n" | ||
$CHANGELOG_AUTHORS_TITLE = "Contributors" | ||
$CHANGELOG_AUTHORS_FORMAT = "* @{github}\n" | ||
|
||
try: | ||
# allow repository to customize synchronized-from-infa rever config | ||
from rever_overrides import * | ||
except ImportError: | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# override synced-from-infra rever.xsh | ||
$ACTIVITIES = ["version_bump", "authors", "changelog"] | ||
|
||
$VERSION_BUMP_PATTERNS = [ # These note where/how to find the version numbers | ||
('conda_index/__init__.py', r'__version__\s*=.*', '__version__ = "$VERSION"'), | ||
] |