File tree Expand file tree Collapse file tree 3 files changed +51
-2
lines changed Expand file tree Collapse file tree 3 files changed +51
-2
lines changed Original file line number Diff line number Diff line change
1
+ Release process
2
+ ===============
3
+ 1. the release happens from `master ` so make sure it is up-to-date:
4
+
5
+ .. code :: sh
6
+
7
+ git pull origin master
8
+
9
+ 2. look at `whats-new.rst ` and make sure it is complete and with
10
+ references to issues and pull requests
11
+
12
+ 3. open and merge a pull request with these changes and the filled in release date
13
+
14
+ 4. run the test suite
15
+
16
+ 5. check that the documentation is building
17
+
18
+ 6. Commit the release:
19
+
20
+ .. code :: sh
21
+
22
+ git commit --allow-empty -am " Release v0.X.Y"
23
+
24
+ 7. Tag the release and push to master:
25
+
26
+ .. code :: sh
27
+
28
+ git tag -a v0.X.Y -m " v0.X.Y"
29
+ git push origin --tags
30
+
31
+ 8. Draft a release for the new tag on github. A CI will pick that up, build the project
32
+ and push to PyPI. Be careful, this can't be undone.
33
+
34
+ 9. Update stable:
35
+
36
+ .. code :: sh
37
+
38
+ git checkout stable
39
+ git merge v0.X.Y
40
+ git push origin stable
41
+
42
+ 10. Make sure readthedocs builds both `stable ` and the new tag
43
+
44
+ 11. Add a new section to `whats-new.rst ` and push directly to master
Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ A convenience wrapper for using `pint`_ in `xarray`_ objects.
5
5
.. _pint : https://pint.readthedocs.io/en/stable
6
6
.. _xarray : https://xarray.pydata.org/en/stable
7
7
8
+ .. warning ::
9
+
10
+ This package is experimental, and new versions might introduce backwards incompatible
11
+ changes.
12
+
8
13
Documentation
9
14
-------------
10
15
Original file line number Diff line number Diff line change 1
1
What's new
2
2
==========
3
3
4
- 0.1 (* unreleased * )
5
- ------------------
4
+ 0.1 (October 26 2020 )
5
+ ---------------------
6
6
- add initial draft of documentation (:pull: `13 `, :pull: `20 `)
7
7
- implement :py:meth: `DataArray.pint.to ` and :py:meth: `Dataset.pint.to `
8
8
(:pull: `11 `)
You can’t perform that action at this time.
0 commit comments