Skip to content

Commit bedb48d

Browse files
weiji14seisman
andauthored
Changelog entry for v0.1.2 (#504)
Patch release in preparation for the Scipy 2020 sprint session. * Format Pull Request links using sed Also updated MAINTENANCE.md to include the `sed` command, instead of using `vim`. * Just use Contributors as heading for list of contributors in the release Release Drafter will now automatically list contributors! * Remove the @$AUTHOR github username from changelog * Set release date to 2020/07/07 and fix a typo Co-Authored-By: Dongdong Tian <[email protected]>
1 parent fccb45c commit bedb48d

File tree

4 files changed

+62
-3
lines changed

4 files changed

+62
-3
lines changed

.github/release-drafter.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ categories:
1515
label: 'deprecation'
1616
exclude-labels:
1717
- 'skip-changelog'
18-
change-template: '* $TITLE (#$NUMBER) @$AUTHOR'
18+
change-template: '* $TITLE (#$NUMBER)'
1919
template: |
2020
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.3781524.svg)](https://doi.org/10.5281/zenodo.3781524)
2121
@@ -24,3 +24,7 @@ template: |
2424
*
2525
2626
$CHANGES
27+
28+
## Contributors
29+
30+
$CONTRIBUTORS

MAINTENANCE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ publishing the actual release notes at https://www.pygmt.org/latest/changes.html
100100

101101
2. Edit the changes list to remove any trivial changes (updates to the README, typo
102102
fixes, CI configuration, etc).
103-
3. Replace the PR number in the commit titles with a link to the Github PR page. In Vim,
104-
use `` %s$#\([0-9]\+\)$`#\1 <https://github.com/GenericMappingTools/pygmt/pull/\1>`__$g ``
103+
3. Replace the PR number in the commit titles with a link to the Github PR page.
104+
Use ``sed -i.bak -E 's$\(#([0-9]*)\)$(`#\1 <https://github.com/GenericMappingTools/pygmt/pull/\1>`__)$g' changes.rst``
105105
to make the change automatically.
106106
4. Copy the remaining changes to `doc/changes.rst` under a new section for the
107107
intended release.

README.rst

+2
Original file line numberDiff line numberDiff line change
@@ -171,5 +171,7 @@ Documentation for other versions
171171
* `Development <https://www.pygmt.org/dev>`__ (reflects the *master* branch on
172172
Github)
173173
* `Latest release <https://www.pygmt.org/latest>`__
174+
* `v0.1.2 <https://www.pygmt.org/v0.1.2>`__
175+
* `v0.1.1 <https://www.pygmt.org/v0.1.1>`__
174176
* `v0.1.0 <https://www.pygmt.org/v0.1.0>`__
175177
* `v0.0.1a0 <https://www.pygmt.org/0.0.1a0>`__

doc/changes.rst

+53
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,58 @@
11
Changelog
22
=========
33

4+
Release v0.1.2 (2020/07/07)
5+
---------------------------
6+
7+
.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.3930577.svg
8+
:alt: Digital Object Identifier for the Zenodo archive
9+
:target: https://doi.org/10.5281/zenodo.3930577
10+
11+
Highlights:
12+
13+
* Patch release in preparation for the SciPy 2020 sprint session
14+
* Last version to support GMT 6.0, future PyGMT versions will require GMT 6.1 or newer
15+
16+
New Features:
17+
18+
* Wrap grdcut (`#492 <https://github.com/GenericMappingTools/pygmt/pull/492>`__)
19+
* Add show_versions() function for printing debugging information used in issue reports (`#466 <https://github.com/GenericMappingTools/pygmt/pull/466>`__)
20+
21+
Enhancements:
22+
23+
* Change load_earth_relief()'s default resolution to 01d (`#488 <https://github.com/GenericMappingTools/pygmt/pull/488>`__)
24+
* Enhance text with extra functionality and aliases (`#481 <https://github.com/GenericMappingTools/pygmt/pull/481>`__)
25+
26+
Documentation:
27+
28+
* Add gallery example for grdview (`#502 <https://github.com/GenericMappingTools/pygmt/pull/502>`__)
29+
* Turn all short aliases into long form (`#474 <https://github.com/GenericMappingTools/pygmt/pull/474>`__)
30+
* Update the plotting example using the colormap generated by pygmt.makecpt (`#472 <https://github.com/GenericMappingTools/pygmt/pull/472>`__)
31+
* Add instructions to view the test coverage reports locally (`#468 <https://github.com/GenericMappingTools/pygmt/pull/468>`__)
32+
* Update the instructions for testing pygmt install (`#459 <https://github.com/GenericMappingTools/pygmt/pull/459>`__)
33+
34+
Bug Fixes:
35+
36+
* Fix a bug when passing data to GMT in Session.open_virtual_file() (`#490 <https://github.com/GenericMappingTools/pygmt/pull/490>`__)
37+
38+
Maintenance:
39+
40+
* Temporarily expect failures for some grdcontour and grdview tests (`#503 <https://github.com/GenericMappingTools/pygmt/pull/503>`__)
41+
* Fix several failures due to updates of earth relief data (`#498 <https://github.com/GenericMappingTools/pygmt/pull/498>`__)
42+
* Unpin pylint version and fix some lint warnings (`#484 <https://github.com/GenericMappingTools/pygmt/pull/484>`__)
43+
* Separate tests of gmtinfo and grdinfo (`#461 <https://github.com/GenericMappingTools/pygmt/pull/461>`__)
44+
* Fix the test for GMT_COMPATIBILITY=6 (`#454 <https://github.com/GenericMappingTools/pygmt/pull/454>`__)
45+
* Update baseline images for updates of earth relief data (`#452 <https://github.com/GenericMappingTools/pygmt/pull/452>`__)
46+
* Simplify PyGMT Release process (`#446 <https://github.com/GenericMappingTools/pygmt/pull/446>`__)
47+
48+
Contributors:
49+
50+
* `Dongdong Tian <https://github.com/seisman>`__
51+
* `Wei Ji Leong <https://github.com/weiji14>`__
52+
* `Liam Toney <https://github.com/liamtoney>`__
53+
54+
----
55+
456
Release v0.1.1 (2020/05/22)
557
---------------------------
658

@@ -37,6 +89,7 @@ This release contains contributions from:
3789

3890
* `Dongdong Tian <https://github.com/seisman>`__
3991
* `Wei Ji Leong <https://github.com/weiji14>`__
92+
* `Jason K. Moore <https://github.com/moorepants>`__
4093

4194
----
4295

0 commit comments

Comments
 (0)