From 5931f2a388751a19f8c3f305821f6f88d9642a61 Mon Sep 17 00:00:00 2001 From: Paul Nameless Date: Mon, 23 Nov 2020 14:08:22 +0200 Subject: [PATCH] Add to readme publish instructions --- readme.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/readme.md b/readme.md index fe79020..3e53979 100644 --- a/readme.md +++ b/readme.md @@ -273,3 +273,14 @@ For navigation arrow keys also can be used. - `c`: show chat info (e.g. secret chat encryption key, chat id, state, etc.) - `?`: show help - `!`: open msg with custom cmd + +## Publish + +```sh +# increase version in tg/__init__.py +git commit -m 'Release 0.7.0' +git tag v0.7.0 +flit publish +git log --pretty=format:"%cn: %s" v0.6.0...v0.7.0 | grep -v -e "Merge pull request" | grep -v "Release" +git push origin master +```