-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
98 additions
and
0 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,4 @@ | ||
- name: Anthony Scopatz | ||
email: [email protected] | ||
num_commits: 14 | ||
first_commit: 2020-08-22 20:43:53 |
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 |
---|---|---|
|
@@ -127,3 +127,6 @@ dmypy.json | |
|
||
# Pyre type checker | ||
.pyre/ | ||
|
||
# Rever | ||
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,12 @@ | ||
# 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. | ||
|
||
Anthony Scopatz <[email protected]> |
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,4 @@ | ||
All of the people who have made at least one contribution to xonsh. | ||
Authors are sorted by number of commits. | ||
|
||
* Anthony Scopatz |
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,5 @@ | ||
================ | ||
xonsh Change Log | ||
================ | ||
|
||
.. current developments |
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 @@ | ||
__version__ = "0.0.0" |
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,23 @@ | ||
**Added:** | ||
|
||
* Initial release of conda-suggest! | ||
|
||
**Changed:** | ||
|
||
* <news item> | ||
|
||
**Deprecated:** | ||
|
||
* <news item> | ||
|
||
**Removed:** | ||
|
||
* <news item> | ||
|
||
**Fixed:** | ||
|
||
* <news item> | ||
|
||
**Security:** | ||
|
||
* <news item> |
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,23 @@ | ||
**Added:** | ||
|
||
* <news item> | ||
|
||
**Changed:** | ||
|
||
* <news item> | ||
|
||
**Deprecated:** | ||
|
||
* <news item> | ||
|
||
**Removed:** | ||
|
||
* <news item> | ||
|
||
**Fixed:** | ||
|
||
* <news item> | ||
|
||
**Security:** | ||
|
||
* <news item> |
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,23 @@ | ||
$PROJECT = $GITHUB_ORG = $GITHUB_REPO = 'xonsh' | ||
$ACTIVITIES = [ | ||
'authors', 'version_bump', 'changelog', | ||
'tag', 'push_tag', 'ghrelease', | ||
'pypi', | ||
#'conda_forge', | ||
] | ||
$PYPI_SIGN = False | ||
|
||
$AUTHORS_FILENAME = "AUTHORS.md" | ||
$VERSION_BUMP_PATTERNS = [ | ||
('conda_suggest/__init__.py', r'__version__\s*=.*', '__version__ = "$VERSION"'), | ||
('setup.py', r'version\s*=.*,', 'version="$VERSION",'), | ||
] | ||
|
||
$CHANGELOG_FILENAME = 'CHANGELOG.md' | ||
$CHANGELOG_TEMPLATE = 'TEMPLATE.md' | ||
$CHANGELOG_PATTERN = "<!-- current developments -->" | ||
$CHANGELOG_HEADER = """ | ||
<!-- current developments --> | ||
## v$VERSION | ||
""" |