Skip to content

Commit e2ce2ef

Browse files
committed
rcCustom-->rcExtraParams, use TTFPATH for custom fonts
1 parent 9ba4b56 commit e2ce2ef

22 files changed

+10376
-7048
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
#### Code sample, a copy-pastable example if possible
2-
32
A "[Minimal, Complete and Verifiable Example](http://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports)" will make it much easier for maintainers to help you.
43

54
```python
6-
# Your code here
5+
# your code here
76
```
87

98
#### Actual result vs. expected result
10-
119
This should explain **why** the current behavior is a problem and why the expected result is a better solution.
12-

CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Changelog History
2+
=================
3+
4+
ProPlot v1.0.0
5+
--------------
6+
First official release. Coming soon! Future changes and releases will be documented.

HOWTORELEASE.rst

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
Release procedure
2+
-----------------
3+
We follow semantic versioning, e.g., v1.0.0. A major version causes incompatible
4+
API changes, a minor version adds functionality, and a patch covers bug fixes.
5+
6+
#. Create a new branch ``release-vX.x.x`` with the version for the release.
7+
8+
* Update `CHANGELOG.rst`
9+
* Make sure all new changes, features are reflected in the documentation.
10+
11+
#. Open a new pull request for this branch targeting `master`
12+
13+
#. After all tests pass and the PR has been approved, merge the PR into ``master``
14+
15+
#. Tag a release and push to github::
16+
17+
$ git tag -a v1.0.0 -m "Version 1.0.0"
18+
$ git push origin master --tags
19+
20+
#. Build and publish release on PyPI::
21+
22+
$ git clean -xfd # remove any files not checked into git
23+
$ python setup.py sdist bdist_wheel --universal # build package
24+
$ twine upload dist/* # register and push to pypi
-453 KB
Loading

0 commit comments

Comments
 (0)