From e56f3ef5c6c8c00e4418f345247ad8e8f167f47e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Maccagnoni?= Date: Mon, 29 May 2023 12:14:59 +0200 Subject: [PATCH] merge dev docs --- DEVELOPER.md | 12 ++++++++++++ notes-to-self.md | 19 ------------------- 2 files changed, 12 insertions(+), 19 deletions(-) delete mode 100644 notes-to-self.md 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/* -```