Skip to content

Commit

Permalink
initial rever file
Browse files Browse the repository at this point in the history
  • Loading branch information
scopatz committed Sep 1, 2020
1 parent 4af5517 commit afebaa1
Show file tree
Hide file tree
Showing 9 changed files with 98 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .authors.yml
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -127,3 +127,6 @@ dmypy.json

# Pyre type checker
.pyre/

# Rever
rever/
12 changes: 12 additions & 0 deletions .mailmap
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]>
4 changes: 4 additions & 0 deletions AUTHORS.md
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
================
xonsh Change Log
================

.. current developments
1 change: 1 addition & 0 deletions conda_suggest/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "0.0.0"
23 changes: 23 additions & 0 deletions news/TEMPLATE.md
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>
23 changes: 23 additions & 0 deletions news/init.md
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>
23 changes: 23 additions & 0 deletions rever.xsh
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
"""

0 comments on commit afebaa1

Please sign in to comment.