From 3fbfbdc278da828f1f7f2c275bfcf4bdbb611136 Mon Sep 17 00:00:00 2001 From: Bu Sun Kim <8822365+busunkim96@users.noreply.github.com> Date: Fri, 20 Dec 2019 12:12:20 -0800 Subject: [PATCH] fix(python): set initial version to 0.1.0 (#325) --- src/releasers/python.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/releasers/python.ts b/src/releasers/python.ts index e976bd613..8fefac29a 100644 --- a/src/releasers/python.ts +++ b/src/releasers/python.ts @@ -88,4 +88,8 @@ export class Python extends ReleasePR { candidate.version ); } + + protected defaultInitialVersion(): string { + return '0.1.0'; + } }