diff --git a/DEVELOPER.md b/DEVELOPER.md index 7ba9473..9f3a893 100644 --- a/DEVELOPER.md +++ b/DEVELOPER.md @@ -32,3 +32,15 @@ An item type may have: After creating a new item type, Add a line in the mapping table in `README.md`, and add a subsection in the same section of the `README.md`. + +## Publishing a release + +These notes are here just in case I forget the process, because I do those +things too rarely to remember them correctly... + +Firstn change version in `setup.py`, then execute: + +```plain +python setup.py sdist +twine upload dist/* +``` diff --git a/notes-to-self.md b/notes-to-self.md deleted file mode 100644 index f01e3e3..0000000 --- a/notes-to-self.md +++ /dev/null @@ -1,19 +0,0 @@ -# Notes to self - -Some notes, because I do those things too rarely to remember them... - -## New release - -1. Do not forget to change version in `setup.py` - -2. Create the dist: - -```plain -python setup.py sdist -``` - -3. Publish: - -```plain -twine upload dist/* -```